@@ -3,13 +3,13 @@ apply plugin: 'kotlin-android'
33apply plugin : ' kotlin-kapt'
44
55android {
6- compileSdk 34
6+ compileSdk rootProject . ext . compileSdk
77 defaultConfig {
88 applicationId " com.ven.assists.demo"
9- minSdk 24
10- targetSdk 33
11- versionCode 5
12- versionName " 3.2.0 "
9+ minSdk rootProject . ext . minSdk
10+ targetSdk rootProject . ext . targetSdk
11+ versionCode rootProject . ext . versionCode
12+ versionName rootProject . ext . versionName
1313 testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
1414
1515 ndk {
@@ -51,23 +51,23 @@ android {
5151
5252dependencies {
5353 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
54- // implementation project(':assists')
55- // implementation project(':assists-mp')
56- // implementation project(':assists-opcv')
57- implementation " com.github.ven-coder.Assists:assists-base:v3.2.1 "
58- implementation " com.github.ven-coder.Assists:assists-opcv:v3.2.1 "
59- implementation " com.github.ven-coder.Assists:assists-mp:v3.2.1 "
60- implementation " androidx.room:room-runtime:2.4.3 "
61- implementation ' androidx.room:room-ktx:2.4.3 '
62- implementation ' com.github.mrmike:ok2curl:0.8.0 '
63- implementation ' androidx.appcompat:appcompat:1.6.1 '
64- implementation ' androidx.constraintlayout:constraintlayout:2.1.4 '
65- implementation ' com.github.li-xiaojun:XPopup:2.9.17 '
66- implementation ' com.google.android.material:material:1.8.0 '
67- implementation ' androidx.recyclerview:recyclerview:1.3.0 '
68- implementation ' com.github.bumptech.glide:glide:4.15.1 '
69- annotationProcessor ' com.github.bumptech.glide:compiler:4.15.1 '
70- implementation ' com.lzy.net:okgo:3.0.4 '
71- implementation " com.squareup.okhttp3:logging-interceptor:4.10.0 "
72- implementation ' com.google.android.flexbox:flexbox:3.0.0 '
54+ implementation project(' :assists' )
55+ implementation project(' :assists-mp' )
56+ implementation project(' :assists-opcv' )
57+ // implementation "com.github.ven-coder.Assists:assists-base:v3.2.11 "
58+ // implementation "com.github.ven-coder.Assists:assists-opcv:v3.2.11 "
59+ // implementation "com.github.ven-coder.Assists:assists-mp:v3.2.11 "
60+ implementation " androidx.room:room-runtime:${ rootProject.ext.roomVersion } "
61+ implementation " androidx.room:room-ktx:${ rootProject.ext.roomVersion } "
62+ implementation " com.github.mrmike:ok2curl:${ rootProject.ext.ok2curlVersion } "
63+ implementation " com.lzy.net:okgo: ${ rootProject.ext.okgoVersion } "
64+ implementation " com.squareup.okhttp3:logging-interceptor: ${ rootProject.ext.okhttpLoggingVersion } "
65+ implementation " androidx.appcompat:appcompat: ${ rootProject.ext.appcompatVersion } "
66+ implementation " androidx.constraintlayout:constraintlayout: ${ rootProject.ext.constraintlayoutVersion } "
67+ implementation " com.github.li-xiaojun:XPopup: ${ rootProject.ext.xpopupVersion } "
68+ implementation " com.google.android.material:material: ${ rootProject.ext.materialVersion } "
69+ implementation " androidx.recyclerview:recyclerview: ${ rootProject.ext.recyclerviewVersion } "
70+ implementation " com.github.bumptech.glide:glide: ${ rootProject.ext.glideVersion } "
71+ annotationProcessor " com.github.bumptech.glide:compiler: ${ rootProject.ext.glideVersion } "
72+ implementation " com.google.android.flexbox:flexbox:${ rootProject.ext.flexboxVersion } "
7373}
0 commit comments