|
- apply plugin: 'com.android.library'
-
- android {
- compileSdkVersion 30
- buildToolsVersion '30.0.3'
-
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 30
- versionCode 1
- versionName "1.0"
-
- testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
-
- }
-
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
-
- }
-
- //repositories {
- // flatDir {
- // dirs 'libs'//this way we can find the .aar file in libs folder
- // }
- //}
-
- dependencies {
- implementation fileTree(dir: 'libs', excludes: ['framework.jar'], include: ['*.jar', '*.aar'])
-
- implementation 'androidx.appcompat:appcompat:1.3.1'
- // implementation 'com.google.android.exoplayer:exoplayer-core:2.6.0'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- }
|