Created
January 14, 2017 12:34
-
-
Save xingrz/8de781a95d6ca9f65ea16ffe22b37bfa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:2.2.3' | |
} | |
} | |
apply plugin: 'com.android.application' | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
compile 'com.android.support:support-v4:25.1.0' | |
compile 'com.android.support:support-v13:25.1.0' | |
compile 'com.android.support:recyclerview-v7:25.1.0' | |
compile 'com.android.support:preference-v7:25.1.0' | |
compile 'com.android.support:appcompat-v7:25.1.0' | |
compile 'com.android.support:preference-v14:25.1.0' | |
compile 'com.google.android.gms:play-services-ads:10.0.1' | |
files('snackbar/snackbar.jar') | |
} | |
android { | |
compileSdkVersion 25 | |
buildToolsVersion "25.0.2" | |
defaultConfig { | |
applicationId "com.mokee.center" | |
minSdkVersion 25 | |
targetSdkVersion 25 | |
versionCode 1 | |
versionName '1.0' | |
} | |
sourceSets { | |
main { | |
manifest.srcFile 'AndroidManifest.xml' | |
java.srcDirs = [ 'src' ] | |
res.srcDirs = [ 'res', 'snackbar/res' ] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment