Commit e9992906 by Sai Sebastian

Gradle Fix

parent 365c51d7
...@@ -5,11 +5,10 @@ buildscript { ...@@ -5,11 +5,10 @@ buildscript {
repositories { repositories {
google() google()
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.0.4' classpath 'com.android.tools.build:gradle:4.1.0'
} }
} }
...@@ -19,19 +18,19 @@ rootProject.allprojects { ...@@ -19,19 +18,19 @@ rootProject.allprojects {
jcenter() jcenter()
flatDir { flatDir {
dirs 'lib' dirs project(':flutter_zoom_sdk').file('libs')
} }
} }
} }
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 33 compileSdkVersion 32
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 33 targetSdkVersion 32
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
multiDexEnabled true multiDexEnabled true
...@@ -50,31 +49,28 @@ android { ...@@ -50,31 +49,28 @@ android {
dependencies { dependencies {
implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
implementation 'com.google.android.material:material:1.6.1' implementation 'com.google.android.material:material:1.3.0-alpha03'
implementation 'com.google.android:flexbox:2.0.1' implementation 'com.google.android:flexbox:2.0.1'
implementation "com.google.code.gson:gson:2.8.9" implementation "com.google.code.gson:gson:2.8.1"
implementation "com.github.bumptech.glide:annotations:4.11.0" implementation "com.github.bumptech.glide:annotations:4.11.0"
implementation "com.github.bumptech.glide:glide:4.11.0" implementation "com.github.bumptech.glide:glide:4.11.0"
implementation "androidx.security:security-crypto:1.1.0-alpha03" implementation "androidx.security:security-crypto:1.1.0-alpha02"
implementation "com.google.crypto.tink:tink-android:1.5.0" implementation "com.google.crypto.tink:tink-android:1.5.0"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation "com.google.android.exoplayer:exoplayer-core:2.18.1" implementation "com.google.android.exoplayer:exoplayer-core:2.18.1"
implementation "com.google.android.exoplayer:exoplayer-ui:2.18.1" implementation "com.google.android.exoplayer:exoplayer-ui:2.18.1
// https://mvnrepository.com/artifact/com.airbnb.android/lottie
implementation 'com.airbnb.android:lottie:2.5.1'
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
//implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: []) api(name: 'commonlib', ext: 'aar')
compileOnly fileTree(dir: 'libs', include: ['*.aar']) api(name: 'mobilertc', ext: 'aar')
//compileOnly files('libs/commonlib.aar', 'libs/commonlib.aar') }
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment