forked from luffyjet/WebViewJavaScriptBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (30 loc) · 1.04 KB
/
build.gradle
File metadata and controls
34 lines (30 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'
android {
compileSdkVersion Integer.parseInt(rootProject.android_compileSdkVersion)
buildToolsVersion rootProject.android_buildToolsVersion
defaultConfig {
minSdkVersion Integer.parseInt(rootProject.android_minSdkVersion)
targetSdkVersion Integer.parseInt(rootProject.android_targetSdkVersion)
versionCode Integer.parseInt(rootProject.android_versionCode)
versionName rootProject.android_versionName
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
publish {
userOrg = 'luffyjetx'
groupId = 'com.luffyjet'
artifactId = 'webviewjavascriptbridge'
publishVersion = '1.0'
desc = 'android webview javascript bridge'
website = 'https://github.com/luffyjet/webviewjavascriptbridge'
licences = ['Apache-2.0']
}