You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
3.7 KiB
Groovy

3 years ago
plugins {
id 'com.android.application'
3 years ago
3 years ago
}
android {
compileSdk 30
defaultConfig {
3 years ago
applicationId 'com.echo.colorize'
3 years ago
minSdk 21
targetSdk 30
3 years ago
versionCode 5
3 years ago
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3 years ago
// ndk {
// abiFilters "arm64-v8a", "armeabi-v7a"
// }
3 years ago
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
3 years ago
versionNameSuffix '2'
3 years ago
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
viewBinding true
3 years ago
mlModelBinding true
}
dataBinding {
enabled = true
3 years ago
}
3 years ago
lintOptions {
abortOnError false;
}
androidResources {
noCompress 'tflite'
3 years ago
}
3 years ago
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
implementation 'androidx.navigation:navigation-fragment:2.3.5'
implementation 'androidx.navigation:navigation-ui:2.3.5'
implementation 'com.android.volley:volley:1.2.0'
3 years ago
implementation 'org.tensorflow:tensorflow-lite-support:0.1.0'
implementation 'org.tensorflow:tensorflow-lite-metadata:0.1.0'
implementation 'org.tensorflow:tensorflow-lite-gpu:2.3.0'
implementation project(path: ':stinger_game')
3 years ago
implementation project(path: ':photo_editor')
3 years ago
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation group: 'com.baidu.aip', name: 'java-sdk', version: '4.15.0'
implementation 'cn.hutool:hutool-all:5.7.10'
implementation 'io.github.lucksiege:pictureselector:v2.7.3-rc07'
implementation "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava"
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
implementation 'com.github.ihimanshurawat:ImageWorker:1.2.0'
implementation 'com.github.karacce:Buttom:v1.0'
implementation 'com.sdsmdg.harjot:rotatingtext:1.0.2'
implementation 'ch.halcyon:squareprogressbar:1.6.4'
implementation 'com.github.chrisbanes:PhotoView:2.0.0'
// implementation 'com.quickbirdstudios:opencv:4.5.2'
3 years ago
implementation 'com.jakewharton.timber:timber:5.0.1'
implementation 'com.itextpdf:itext7-core:7.1.8'
3 years ago
implementation 'com.etebarian:meow-bottom-navigation:1.2.0'
implementation 'org.tensorflow:tensorflow-lite:0.0.0-nightly'
implementation 'org.tensorflow:tensorflow-lite-gpu:0.0.0-nightly'
implementation 'com.yanzhenjie:album:2.1.3'
3 years ago
implementation 'com.github.ybq:Android-SpinKit:1.4.0'
implementation 'com.skyfishjy.ripplebackground:library:1.0.1'
implementation 'com.daimajia.androidanimations:library:2.4@aar'
implementation 'com.airbnb.android:lottie:4.1.0'
3 years ago
implementation 'cn.leancloud:storage-android:8.1.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'com.camerakit:camerakit:1.0.0-beta3.11'
implementation 'com.camerakit:jpegkit:0.1.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.0'
3 years ago
3 years ago
implementation("com.android.billingclient:billing:4.0.0")
3 years ago
3 years ago
}