Skip to content

Commit 5205730

Browse files
Vladimir KocheryzhkinVladimir Kocheryzhkin
authored andcommitted
try to build release
1 parent 58cd257 commit 5205730

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

signing/test.jks

2.01 KB
Binary file not shown.

visionSamples/FaceTracker/app/build.gradle

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
apply plugin: 'com.android.application'
22

33
android {
4+
signingConfigs {
5+
config {
6+
keyAlias 'test'
7+
keyPassword 'test123321'
8+
storeFile file('C:/Work/android-vision/signing/test.jks')
9+
storePassword 'test123321'
10+
}
11+
}
412
compileSdkVersion 24
513
buildToolsVersion '27.0.3'
6-
714
defaultConfig {
815
applicationId "com.google.android.gms.samples.vision.face.facetracker"
916
minSdkVersion 9
@@ -23,22 +30,26 @@ android {
2330

2431
}
2532
}
33+
signingConfig signingConfigs.config
2634
}
2735
buildTypes {
2836
release {
2937
minifyEnabled false
3038
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
39+
signingConfig signingConfigs.config
3140
}
3241
}
3342
externalNativeBuild {
3443
cmake {
3544
path "CMakeLists.txt"
3645
}
3746
}
47+
productFlavors {
48+
}
3849
}
3950

4051
dependencies {
41-
implementation fileTree(dir: 'libs', include: ['*.jar'])
52+
implementation fileTree(include: ['*.jar'], dir: 'libs')
4253
implementation 'com.android.support:support-v4:24.2.0'
4354
implementation 'com.android.support:design:24.2.0'
4455
implementation 'com.google.android.gms:play-services-vision:9.4.0+'

visionSamples/FaceTracker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
buildscript {
44
repositories {
5-
jcenter()
65
google()
6+
jcenter()
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:3.1.1'

0 commit comments

Comments
 (0)