d3d6db4d88
Transform in into gradle project thanks to androidStudio. History is lost. Thanks "new" tools...
20 lines
416 B
Groovy
20 lines
416 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 15
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "org.mathux.algoandvideo"
|
|
minSdkVersion 12
|
|
targetSdkVersion 12
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|