Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@lamvd0101
Created November 2, 2022 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lamvd0101/aef7316b790940ca815e9661f2c60005 to your computer and use it in GitHub Desktop.
Save lamvd0101/aef7316b790940ca815e9661f2c60005 to your computer and use it in GitHub Desktop.
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.company.rnexample'
compileSdk 32
defaultConfig {
applicationId "com.company.rnexample"
minSdk 21
targetSdk 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation project(":RNSDKAndroid")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment