codec2_talkie/codec2talkie/build.gradle

55 wiersze
1.7 KiB
Groovy

2020-11-28 14:47:52 +00:00
plugins {
id 'com.android.application'
}
android {
2024-02-18 20:16:23 +00:00
android.ndkVersion "21.4.7075529"
2020-11-28 14:47:52 +00:00
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.radio.codec2talkie"
minSdkVersion 23
targetSdkVersion 30
2024-02-22 17:59:48 +00:00
versionCode 172
versionName "1.72"
2020-11-28 14:47:52 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(":libcodec2-android")
2023-12-08 20:55:25 +00:00
implementation project(":libopus-android")
2021-01-24 13:01:54 +00:00
2022-07-05 10:46:36 +00:00
implementation 'androidx.preference:preference:1.2.0'
2020-11-28 14:47:52 +00:00
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
2021-10-23 18:53:02 +00:00
implementation 'com.github.mik3y:usb-serial-for-android:3.4.3'
2022-07-06 08:32:31 +00:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2022-08-26 12:25:01 +00:00
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.lifecycle:lifecycle-livedata:2.5.1'
testImplementation 'junit:junit:4.13.1'
2022-07-05 10:46:36 +00:00
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
2022-08-26 12:25:01 +00:00
implementation "androidx.room:room-runtime:2.4.3"
annotationProcessor "androidx.room:room-compiler:2.4.3"
implementation "org.osmdroid:osmdroid-android:6.1.13"
2022-06-19 11:47:27 +00:00
}