Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit 51e9b8e

Browse files
committed
init android
1 parent 6c7243e commit 51e9b8e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

android/build.gradle

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
apply plugin: 'com.android.library'
2+
3+
android {
4+
compileSdkVersion 23
5+
buildToolsVersion "23.0.1"
6+
7+
defaultConfig {
8+
minSdkVersion 16
9+
targetSdkVersion 22
10+
versionCode 2
11+
versionName "0.1"
12+
ndk {
13+
abiFilters "armeabi-v7a", "x86"
14+
}
15+
}
16+
lintOptions {
17+
warning 'InvalidPackage'
18+
}
19+
}
20+
21+
dependencies {
22+
compile 'com.facebook.react:react-native:+'
23+
compile 'com.google.android.gms:play-services-gcm:+'
24+
}

0 commit comments

Comments
 (0)