File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
android/rustls-platform-verifier Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ android {
31
31
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
32
32
}
33
33
34
+ namespace " org.rustls.platformverifier"
35
+
34
36
buildTypes {
35
37
release {
36
38
minifyEnabled false
@@ -67,6 +69,9 @@ android {
67
69
}
68
70
}
69
71
}
72
+ buildFeatures {
73
+ buildConfig true
74
+ }
70
75
}
71
76
72
77
configurations {
@@ -75,7 +80,7 @@ configurations {
75
80
76
81
task ktlint (type : JavaExec , group : " verification" ) {
77
82
description = " Check Kotlin code style."
78
- main = " com.pinterest.ktlint.Main"
83
+ mainClass = " com.pinterest.ktlint.Main"
79
84
classpath = configurations. ktlint
80
85
args " src/**/*.kt"
81
86
}
@@ -84,7 +89,7 @@ check.dependsOn ktlint
84
89
85
90
task ktlintFormat (type : JavaExec , group : " formatting" ) {
86
91
description = " Fix Kotlin code style deviations."
87
- main = " com.pinterest.ktlint.Main"
92
+ mainClass = " com.pinterest.ktlint.Main"
88
93
classpath = configurations. ktlint
89
94
args " -F" , " src/**/*.kt"
90
95
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" org.rustls.platformverifier" />
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" />
You can’t perform that action at this time.
0 commit comments