apply plugin: 'com.android.application' android { compileSdkVersion 21 buildToolsVersion "21.1.2" defaultConfig { applicationId "org.deadc0de.apple2ix" minSdkVersion 10 targetSdkVersion 21 versionCode 1 versionName "0.9.1" ndk { moduleName "apple2ix" } } signingConfigs { release { storeFile file("release2.keystore") storePassword System.getenv("GOOGSTOREPWD") keyPassword System.getenv("GOOGKEYPWD") keyAlias "release" } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' signingConfig signingConfigs.release } debug { debuggable true jniDebuggable true } } productFlavors { demo { applicationId "org.deadc0de.apple2ix.demo" versionName "0.9.1-demo" } full { applicationId "org.deadc0de.apple2ix.full" versionName "0.9.1-full" } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:21.0.3' }