We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f024e83 commit c253feeCopy full SHA for c253fee
uiautomationutilities/build.gradle
@@ -21,7 +21,7 @@ if (project.hasProperty("uiElementTimeout")) {
21
}
22
23
android {
24
-
+ namespace "com.microsoft.identity.client.ui.automation"
25
testOptions {
26
compileOptions {
27
// Flag to enable support for the new language APIs
@@ -148,9 +148,11 @@ android {
148
149
task sourcesJar(type: Jar) {
150
from android.sourceSets.main.java.srcDirs
151
- classifier 'sources'
+// classifier 'sources'
152
+ archiveClassifier.set('sources')
153
154
155
+
156
tasks.whenTaskAdded { task ->
157
if (task.name == 'assembleDebug' || task.name == 'assembleRelease') {
158
task.dependsOn 'sourcesJar'
0 commit comments