43 lines
1.1 KiB
Groovy
43 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
namespace 'com.stage.control'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.stage.control"
|
|
minSdk 29
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
// Gemini AI SDK
|
|
implementation 'com.google.ai.client.generativeai:generativeai:0.9.0'
|
|
|
|
// HTTP Client & JSON Parsing for DeepSeek
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
|
|
// Guava (used in existing code for callbacks/futures)
|
|
implementation 'com.google.guava:guava:33.0.0-android'
|
|
}
|