Commit 13542e78 by Sai Sebastian

Gradle Fix

parent ea85b589
...@@ -5,10 +5,11 @@ buildscript { ...@@ -5,10 +5,11 @@ buildscript {
repositories { repositories {
google() google()
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:4.1.0' classpath 'com.android.tools.build:gradle:7.0.4'
} }
} }
...@@ -26,11 +27,11 @@ rootProject.allprojects { ...@@ -26,11 +27,11 @@ rootProject.allprojects {
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 32 compileSdkVersion 33
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 32 targetSdkVersion 33
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
multiDexEnabled true multiDexEnabled true
...@@ -49,27 +50,31 @@ android { ...@@ -49,27 +50,31 @@ android {
dependencies { dependencies {
implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.recyclerview:recyclerview:1.1.0' implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.2' implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.android.material:material:1.3.0-alpha03' implementation 'com.google.android.material:material:1.6.1'
implementation 'com.google.android:flexbox:2.0.1' implementation 'com.google.android:flexbox:2.0.1'
implementation "com.google.code.gson:gson:2.8.1" implementation "com.google.code.gson:gson:2.8.9"
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-alpha02" implementation "androidx.security:security-crypto:1.1.0-alpha03"
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.12.3" implementation "com.google.android.exoplayer:exoplayer-core:2.18.1"
implementation "com.google.android.exoplayer:exoplayer-ui:2.12.3" implementation "com.google.android.exoplayer:exoplayer-ui:2.18.1"
testImplementation 'junit:junit:4.12' // https://mvnrepository.com/artifact/com.airbnb.android/lottie
androidTestImplementation 'androidx.test.ext:junit:1.1.1' implementation 'com.airbnb.android:lottie:2.5.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
api(name: 'commonlib', ext: 'aar') testImplementation 'junit:junit:4.13.2'
api(name: 'mobilertc', ext: 'aar') androidTestImplementation 'androidx.test.ext:junit:1.1.3'
} androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: [])
implementation files('libs/commonlib.aar')
implementation files('libs/mobilertc.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