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
30 lines (25 loc) · 1007 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 1007 Bytes
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
apply plugin: 'com.android.application'
android {
compileSdkVersion Integer.parseInt(rootProject.android_compileSdkVersion)
buildToolsVersion rootProject.android_buildToolsVersion
defaultConfig {
applicationId rootProject.example_package
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'])
compile "com.android.support:appcompat-v7:${android_support}"
compile "com.google.code.gson:gson:${android_gson}"
// compile project(':library')
compile 'com.luffyjet:webviewjavascriptbridge:1.0'
}