| 123456789101112131415161718192021222324 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 20
- buildToolsVersion "20.0.0"
- defaultConfig {
- applicationId "com.abhinav.personal.remotecamerashutter"
- minSdkVersion 14
- targetSdkVersion 20
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- runProguard false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- }
|