forked from Florianisme/WakeOnLan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared-build.gradle
66 lines (56 loc) · 1.86 KB
/
shared-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
android {
namespace 'de.florianisme.wakeonlan'
compileSdk 34
signingConfigs {
release {
storeFile file(project.findProperty('UPLOAD_KEYSTORE_PATH') ?: " ")
storePassword project.findProperty('KEYSTORE_PASSWORD') ?: ""
keyAlias project.findProperty('KEY_ALIAS') ?: ""
keyPassword project.findProperty('KEY_PASSWORD') ?: ""
v1SigningEnabled true
v2SigningEnabled true
}
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),
"$rootProject.projectDir/proguard-rules.pro"
}
debug {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),
"$rootProject.projectDir/proguard-rules.pro"
}
}
defaultConfig {
applicationId "de.florianisme.wakeonlan"
minSdk 24
targetSdk 34
versionName "1.9.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'com.google.android.support:wearable:2.9.0'
compileOnly 'com.google.android.wearable:wearable:2.9.0'
implementation 'com.google.android.gms:play-services-wearable:18.1.0'
implementation 'com.google.guava:guava:31.0.1-jre'
implementation 'com.google.code.gson:gson:2.10.1'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:5.3.1'
}