| apply plugin: 'com.android.application' |
| |
| dependencies { |
| compile project(':support-transition') |
| compile project(':support-appcompat-v7') |
| } |
| |
| android { |
| compileSdkVersion project.ext.currentSdk |
| |
| defaultConfig { |
| minSdkVersion 14 |
| targetSdkVersion project.ext.currentSdk |
| } |
| |
| sourceSets { |
| main.manifest.srcFile 'AndroidManifest.xml' |
| main.java.srcDirs = ['src'] |
| main.aidl.srcDirs = ['src'] |
| main.res.srcDirs = ['res'] |
| } |
| |
| lintOptions { |
| abortOnError true |
| check 'NewApi' |
| } |
| |
| signingConfigs { |
| debug { |
| // Use a local debug keystore to avoid build server issues. |
| storeFile project.rootProject.init.debugKeystore |
| } |
| } |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_7 |
| targetCompatibility JavaVersion.VERSION_1_7 |
| } |
| |
| aaptOptions { |
| additionalParameters "--no-version-transitions" |
| } |
| } |
| |