123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- apply plugin: 'kotlin-kapt'
- android {
- compileSdkVersion 30
- resourcePrefix "uxsdk_"
- defaultConfig {
- minSdkVersion 24
- targetSdkVersion 30
- versionCode 1
- versionName "1.0"
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions{
- jvmTarget = JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
- implementation 'androidx.core:core-ktx:1.2.0'
- implementation 'androidx.appcompat:appcompat:1.1.0'
- implementation 'com.google.android.material:material:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation "com.dji:dji-sdk-v5-aircraft:5.2.0"
- implementation "com.dji:dji-sdk-v5-networkImp:5.2.0"
- compileOnly "com.dji:dji-sdk-v5-aircraft-provided:5.2.0"
- implementation 'com.squareup.okio:okio:1.15.0'
- implementation 'com.squareup.wire:wire-runtime:2.2.0'
- implementation 'com.airbnb.android:lottie:3.3.1'
- }
|