Skip to content

Instantly share code, notes, and snippets.

@knightcube
Created January 23, 2021 06:06
Show Gist options
  • Save knightcube/6cb8d24c3cffa0c729a2d4843d421969 to your computer and use it in GitHub Desktop.
Save knightcube/6cb8d24c3cffa0c729a2d4843d421969 to your computer and use it in GitHub Desktop.
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