File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
- def githubProperties = new Properties ()
4
- githubProperties. load(new FileInputStream (rootProject. file(" local.properties" )))
3
+ // def githubProperties = new Properties()
4
+ // githubProperties.load(new FileInputStream(rootProject.file("local.properties")))
5
5
6
6
buildscript {
7
7
ext. kotlin_version = ' 1.3.50'
@@ -29,8 +29,8 @@ allprojects {
29
29
name = " android-sdk"
30
30
url = uri(" https://maven.pkg.github.com/kkiapay/android-sdk" )
31
31
credentials {
32
- username = System . getenv(' GITHUB_USER' ) ?: project. properties[' GITHUB_USER' ]
33
- password = System . getenv(' GITHUB_PERSONAL_ACCESS_TOKEN' ) ?: project. properties[' GITHUB_PERSONAL_ACCESS_TOKEN' ]
32
+ username = System . getenv(' GITHUB_USER' ) // ?: project.properties['GITHUB_USER']
33
+ password = System . getenv(' GITHUB_PERSONAL_ACCESS_TOKEN' ) // ?: project.properties['GITHUB_PERSONAL_ACCESS_TOKEN']
34
34
}
35
35
}
36
36
}
Original file line number Diff line number Diff line change 1
1
// apply plugin: 'com.jfrog.bintray'
2
2
apply plugin : ' maven-publish'
3
3
4
- def githubProperties = new Properties ()
5
- githubProperties. load(new FileInputStream (rootProject. file(" local.properties" )))
4
+ // def githubProperties = new Properties()
5
+ // githubProperties.load(new FileInputStream(rootProject.file("local.properties")))
6
6
7
7
publishing {
8
8
repositories {
9
9
maven {
10
10
name = " GithubPackages"
11
11
url = uri(" https://maven.pkg.github.com/kkiapay/android-sdk" )
12
12
credentials {
13
- username = System . getenv(' GITHUB_USER' ) ?: githubProperties[' GITHUB_USER' ]
14
- password = System . getenv(' GITHUB_PERSONAL_ACCESS_TOKEN' ) ?: githubProperties[' GITHUB_PERSONAL_ACCESS_TOKEN' ]
13
+ username = System . getenv(' GITHUB_USER' ) // ?: githubProperties['GITHUB_USER']
14
+ password = System . getenv(' GITHUB_PERSONAL_ACCESS_TOKEN' ) // ?: githubProperties['GITHUB_PERSONAL_ACCESS_TOKEN']
15
15
}
16
16
}
17
17
Original file line number Diff line number Diff line change 1
- VERSION_NAME =1.2.15
2
- VERSION_CODE =42
1
+ VERSION_NAME =1.2.16
2
+ VERSION_CODE =43
3
3
org.gradle.jvmargs =-Xmx1536m
4
4
android.useAndroidX =true
5
5
android.enableJetifier =true
You can’t perform that action at this time.
0 commit comments