Created
December 13, 2017 11:17
-
-
Save 1fabiopereira/765fe69291e3877546f448c571bc1fc3 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.3.1' | |
} | |
} | |
apply plugin: 'com.android.library' | |
android { | |
compileSdkVersion 25 | |
buildToolsVersion "25.0.0" | |
defaultConfig { | |
minSdkVersion 16 | |
targetSdkVersion 22 | |
versionCode 1 | |
versionName "1.0" | |
} | |
lintOptions { | |
abortOnError false | |
} | |
} | |
dependencies { | |
compile 'com.facebook.react:react-native:+' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment