35 lines
826 B
Groovy
35 lines
826 B
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 {
|
|
compileSdk 34
|
|
defaultConfig {
|
|
applicationId "de.frajul.particlelab"
|
|
minSdkVersion 14
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
namespace 'de.frajul.particlelab'
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
}
|