You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1009 B
30 lines
1009 B
apply plugin: 'com.android.application' |
|
|
|
android { |
|
compileSdkVersion 23 |
|
buildToolsVersion "23.0.3" |
|
defaultConfig { |
|
applicationId "com.example.joseph.example_android_app" |
|
minSdkVersion 15 |
|
targetSdkVersion 23 |
|
versionCode 1 |
|
versionName "1.0" |
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
|
} |
|
buildTypes { |
|
release { |
|
minifyEnabled false |
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
|
} |
|
} |
|
} |
|
|
|
dependencies { |
|
compile fileTree(dir: 'libs', include: ['*.jar']) |
|
compile 'com.android.support:appcompat-v7:23.4.0' |
|
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha1' |
|
testCompile 'junit:junit:4.12' |
|
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2' |
|
androidTestCompile 'com.android.support.test:runner:0.5' |
|
androidTestCompile 'com.android.support:support-annotations:23.4.0' |
|
}
|
|
|