-
Notifications
You must be signed in to change notification settings - Fork 21
/
build.gradle
66 lines (60 loc) · 1.7 KB
/
build.gradle
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// NOTE: you MUST disable configureOnDemand for your compiler.
// To do this in Android Studio: https://stackoverflow.com/a/49994951/4082582
plugins {
id 'com.android.application'
id 'io.left.rightmesh.rightmesh-plugin' version '1.8.1'
}
rightmesh {
appKey = rightmesh_hellomesh_key
username = rightmesh_build_username
password = rightmesh_build_password
}
preBuild.dependsOn("rightmesh")
repositories {
google()
jcenter()
mavenCentral()
maven {
url "https://artifactory.rightmesh.io/artifactory/maven"
credentials {
username rightmesh_build_username
password rightmesh_build_password
}
}
maven { url "https://dl.bintray.com/ethereum/maven" }
}
android {
compileSdkVersion 27
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "io.left.hellomesh"
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "1.0"
multiDexEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation 'com.android.support:multidex:1.0.3'
implementation ('io.left.rightmesh:lib-rightmesh-android:0.10.0')
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation fileTree(dir: 'libs', include: ['*.jar'])
}