Created
January 23, 2021 06:06
-
-
Save knightcube/6cb8d24c3cffa0c729a2d4843d421969 to your computer and use it in GitHub Desktop.
This file contains 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() | |
google() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:3.1.0' | |
} | |
} | |
apply plugin: 'com.android.library' | |
android { | |
compileSdkVersion 23 | |
buildToolsVersion "25.0.0" | |
defaultConfig { | |
minSdkVersion 25 | |
targetSdkVersion 28 | |
versionCode 1 | |
versionName "1.0" | |
} | |
lintOptions { | |
abortOnError false | |
} | |
} | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
implementation 'com.facebook.react:react-native:+' | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment