Skip to content

Commit 411312b

Browse files
committed
Release v1.1.0
1 parent 118a7a5 commit 411312b

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Repository for testing build from jitpack.io
77
## Version Release
88
This Is Latest Release
99

10-
$version_release = 1.0.9
10+
$version_release = 1.1.0
1111

1212
What's New??
1313

@@ -35,7 +35,7 @@ What's New??
3535
### Step 2. Add the dependency (build.gradle : Module)
3636

3737
dependencies {
38-
implementation 'com.github.amirisback:jitpack-library-test:1.0.9'
38+
implementation 'com.github.amirisback:jitpack-library-test:1.1.0'
3939
}
4040

4141
## How To Publish Android Lib Using openJDK 11 and AGP 7.0.0 +

androidlibfirst/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ plugins {
44
id 'maven-publish'
55
}
66

7-
group="com.github.amirisback"
8-
97
kotlin {
108
android {
119
compileSdk projectCompileSdk

androidlibsecond/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ plugins {
44
id 'maven-publish'
55
}
66

7-
group="com.github.amirisback"
8-
97
android {
108
compileSdk projectCompileSdk
119

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ buildscript {
77
nameAPK = nameApp.toLowerCase().replace(" ", "-")
88

99
def versionMajor = 1
10-
def versionMinor = 0
11-
def versionPatch = 9
10+
def versionMinor = 1
11+
def versionPatch = 0
1212

1313
def appDomain = "com"
1414
def appDevConsole = "frogobox"
@@ -29,6 +29,8 @@ buildscript {
2929

3030
projectKotlinLibraryId = "$appDomain.$appDevConsole.$kotlinLibrary"
3131

32+
projectGithubUsername = "com.github.amirisback"
33+
3234
projectVersionCode = (versionMajor * 100) + (versionMinor * 10) + (versionPatch * 1)
3335
projectVersionName = "$versionMajor.$versionMinor.$versionPatch"
3436

0 commit comments

Comments
 (0)