45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
/*
|
|
* Created by Julian Mutter on 7/10/18 3:58 PM
|
|
* Copyright (c) 2018. All rights reserved.
|
|
* Last modified 7/10/18 3:55 PM
|
|
*
|
|
*/
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
signingConfigs {
|
|
}
|
|
compileSdk 34
|
|
defaultConfig {
|
|
applicationId 'de.frajul.endlessroll'
|
|
minSdkVersion 14
|
|
targetSdkVersion 34
|
|
versionCode 9
|
|
versionName '1.0'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
flavorDimensions = ['releaseTargetGroup']
|
|
productFlavors {
|
|
flavorStoreRelease {
|
|
dimension 'releaseTargetGroup'
|
|
}
|
|
flavorTest {
|
|
dimension 'releaseTargetGroup'
|
|
}
|
|
}
|
|
namespace 'de.frajul.endlessroll'
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation files('libs/simple-xml-2.7.1.jar')
|
|
}
|