File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ android.useAndroidX=true
33android.enableJetifier =true
44kotlin.code.style =official
55
6- version =1.0.1
6+ version =1.0.2
77kotlin.version =1.6.21
88agp.version =7.0.4
99compose.version =1.2.0-alpha01-dev675
Original file line number Diff line number Diff line change @@ -95,13 +95,14 @@ afterEvaluate {
9595 maven {
9696 name = " GithubPackages"
9797 url = uri(" https://maven.pkg.github.com/codeckle/compose-markdown" )
98-
99- runCatching {
98+ try {
10099 credentials {
101100 username = (githubProperties[" gpr.usr" ] ? : System .getenv(" GPR_USER" )).toString()
102101 password = (githubProperties[" gpr.key" ] ? : System .getenv(" GPR_API_KEY" )).toString()
103102 }
104- }.onFailure { it.printStackTrace() }
103+ }catch (ex : Exception ){
104+ ex.printStackTrace()
105+ }
105106 }
106107 }
107108 }
You can’t perform that action at this time.
0 commit comments