Created
February 16, 2018 17:02
-
-
Save 1fabiopereira/cb6f0ad1d17b1a372b59442e571284c2 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:1.1.3' | |
} | |
} | |
apply plugin: 'com.android.library' | |
android { | |
compileSdkVersion 25 | |
buildToolsVersion "25.0.1" | |
defaultConfig { | |
minSdkVersion 16 | |
targetSdkVersion 22 | |
versionCode 1 | |
versionName "1.0" | |
} | |
lintOptions { | |
abortOnError false | |
} | |
} | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
compile 'com.facebook.react:react-native:0.12.+' | |
compile 'com.google.android.gms:play-services-location:8.3.0' | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment