mirror of
https://github.com/status-im/react-native-udp.git
synced 2025-01-12 01:54:49 +00:00
3ce4b63536
moved ios specific code into a subfolder created an android folder updated the Install instructions on the readme bumped the version to 0.2.0
32 lines
710 B
Groovy
32 lines
710 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "0.2.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
// needed for https://github.com/square/okio/issues/58
|
|
lintOptions {
|
|
warning 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:23.0.1'
|
|
compile 'com.facebook.react:react-native:0.11.+'
|
|
}
|