mirror of https://codeberg.org/tom79/Fedilab
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
850 B
38 lines
850 B
3 years ago
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 31
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 15
|
||
|
targetSdkVersion 31
|
||
|
|
||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
// Add a new configuration to hold your dependencies
|
||
|
configurations {
|
||
|
libConfig
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
//noinspection GradleCompatible
|
||
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
||
|
testImplementation 'junit:junit:4.13.2'
|
||
|
androidTestImplementation 'androidx.test:runner:1.4.0'
|
||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
||
|
|
||
|
}
|