File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed
visionSamples/FaceTracker Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
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
+ }
4
12
compileSdkVersion 24
5
13
buildToolsVersion ' 27.0.3'
6
-
7
14
defaultConfig {
8
15
applicationId " com.google.android.gms.samples.vision.face.facetracker"
9
16
minSdkVersion 9
@@ -23,22 +30,26 @@ android {
23
30
24
31
}
25
32
}
33
+ signingConfig signingConfigs. config
26
34
}
27
35
buildTypes {
28
36
release {
29
37
minifyEnabled false
30
38
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
39
+ signingConfig signingConfigs. config
31
40
}
32
41
}
33
42
externalNativeBuild {
34
43
cmake {
35
44
path " CMakeLists.txt"
36
45
}
37
46
}
47
+ productFlavors {
48
+ }
38
49
}
39
50
40
51
dependencies {
41
- implementation fileTree(dir : ' libs ' , include : [' *.jar' ])
52
+ implementation fileTree(include : [' *.jar' ], dir : ' libs ' )
42
53
implementation ' com.android.support:support-v4:24.2.0'
43
54
implementation ' com.android.support:design:24.2.0'
44
55
implementation ' com.google.android.gms:play-services-vision:9.4.0+'
Original file line number Diff line number Diff line change 2
2
3
3
buildscript {
4
4
repositories {
5
- jcenter()
6
5
google()
6
+ jcenter()
7
7
}
8
8
dependencies {
9
9
classpath ' com.android.tools.build:gradle:3.1.1'
You can’t perform that action at this time.
0 commit comments