You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
79 lines
2.2 KiB
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.mindspore.himindspore"
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
versionCode 3
|
|
versionName "1.1.1"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = [moduleName: project.getName()]
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
aaptOptions {
|
|
noCompress "ms"
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
|
|
flatDir {
|
|
dirs 'libs', '../mindsporelibrary/libs'
|
|
}
|
|
}
|
|
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
|
|
implementation 'com.trello.rxlifecycle2:rxlifecycle:2.2.2'
|
|
implementation 'com.trello.rxlifecycle2:rxlifecycle-components:2.2.2'
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.1'
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0'
|
|
implementation 'org.greenrobot:eventbus:3.0.0'
|
|
|
|
implementation 'com.alibaba:arouter-api:1.2.1'
|
|
annotationProcessor 'com.alibaba:arouter-compiler:1.1.2'
|
|
|
|
implementation project(':posenet')
|
|
implementation project(':imageObject')
|
|
implementation project(':styletransfer')
|
|
}
|