Benennen Sie androidTest apk um

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Benennen Sie androidTest apk um

by Guest » 05 Jan 2025, 14:19

Ich habe diese Konfiguration in meinem build.gradle eingerichtet, was gut funktioniert hat, aber seit ich auf Gradle 8.9 aktualisiert habe, ist apk noch nicht umbenannt. (Der Name ist immer noch „app-staging-androidTest.apk“ statt „myCustomName.apk“).

Code: Select all

android {
testVariants.configureEach { variant ->
outputs.configureEach { output ->
output.outputFileName = "myCustomName.apk"
}
}
}
Wissen Sie, wo ich Dokumentation dazu finden kann oder wie ich meine Gradle-Datei einrichten kann, um das zu beheben?

Top