mirror of
https://github.com/vanitasvitae/EnigmAndroid.git
synced 2024-11-16 17:32:07 +01:00
vanitasvitae
6ac769df94
Added Enigma KD, Added protocol version to ensure compatibility with upcoming releases, Added options to share configuration as string, organized sharing/receiving of configuration, moved preference-management to SettingsActivity, Added whats-New-Dialog that informs user about latest changes Translated some strings, commented some methods in MainActivity New Icon! Added comment and removed unused import, peanuts if you ask me Added Script to automatically render icon in all dimensions Reformated code and moved Plugboard, EntryWheel, Reflector, Rotor to new package parts Cleaned repository Merge branch 'development'
23 lines
484 B
Groovy
23 lines
484 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "de.vanitasvitae.enigmandroid"
|
|
minSdkVersion 10
|
|
targetSdkVersion 23
|
|
versionCode 15
|
|
versionName "0.1.9-09.10.2015-beta"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:support-v4:23.1.1'
|
|
}
|