|
|
@ -3,11 +3,11 @@ apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
android {
|
|
|
|
compileSdkVersion 33
|
|
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "dev.flutter.example.androidusingprebuiltmodule"
|
|
|
|
applicationId "dev.flutter.example.androidusingprebuiltmodule"
|
|
|
|
minSdkVersion 21
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 33
|
|
|
|
targetSdkVersion 34
|
|
|
|
versionCode 1
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
@ -22,6 +22,9 @@ android {
|
|
|
|
sourceCompatibility 1.8
|
|
|
|
sourceCompatibility 1.8
|
|
|
|
targetCompatibility 1.8
|
|
|
|
targetCompatibility 1.8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
|
|
|
|
}
|
|
|
|
namespace 'dev.flutter.example.androidusingprebuiltmodule'
|
|
|
|
namespace 'dev.flutter.example.androidusingprebuiltmodule'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -48,12 +51,12 @@ dependencies {
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
|
|
implementation 'androidx.core:core-ktx:1.10.1'
|
|
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
androidTestImplementation "com.google.truth:truth:1.1.3"
|
|
|
|
androidTestImplementation "com.google.truth:truth:1.1.3"
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.5.2'
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
|
|
|
api 'androidx.test:core:1.5.0'
|
|
|
|
api 'androidx.test:core:1.2.1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|