Skip to content

Commit b7fd58f

Browse files
committed
Release v1.0.9
1 parent fb0f367 commit b7fd58f

File tree

3 files changed

+45
-12
lines changed

3 files changed

+45
-12
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Generate APK Debug
2+
3+
on:
4+
# Triggers the workflow on push or pull request events but only for default and protected branches
5+
push:
6+
branches: [ master ]
7+
pull_request:
8+
branches: [ master ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v1
17+
18+
- name: Set Up JDK
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: 11
22+
23+
- name: Change wrapper permissions
24+
run: chmod +x ./gradlew
25+
26+
# Run Build Project
27+
- name: Build project
28+
run: ./gradlew build
29+
30+
# Create APK Debug
31+
- name: Build apk debug project (APK)
32+
run: ./gradlew assembleDebug
33+
34+
# Upload Artifact Build
35+
# Noted For Output [module-name]/build/outputs/
36+
- name: Upload debug build APK
37+
uses: actions/upload-artifact@v2
38+
with:
39+
name: App bundle(s) and APK(s) generated
40+
path: app/build/outputs/

README.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,11 @@
2323
## Version Release
2424
This Is Latest Release
2525

26-
$version_release = 1.0.8
26+
$version_release = 1.0.9
2727

2828
What's New??
2929

30-
* Bug Fixed *
31-
* Enhance Performance *
32-
* Update : build.gradle latest version *
33-
* Update : Android Gradle Plugin 7.0.4 *
34-
* Update : Kotlin Version 1.6.10 *
35-
* Adding : Custom Layout Notification *
36-
* Solving Feature Request *
37-
* Solving Issue *
30+
* Update Build Gradle Version *
3831

3932
## Download this project
4033

@@ -71,14 +64,14 @@ allprojects {
7164

7265
dependencies {
7366
// library frogo-notification
74-
implementation 'com.github.amirisback:frogo-notification:1.0.8'
67+
implementation 'com.github.amirisback:frogo-notification:1.0.9'
7568
}
7669

7770
#### <Option 2> Kotlin DSL Gradle
7871

7972
dependencies {
8073
// library frogo-notification
81-
implementation("com.github.amirisback:frogo-notification:1.0.8")
74+
implementation("com.github.amirisback:frogo-notification:1.0.9")
8275
}
8376

8477
### Step 3. Implement frogo-notification (Simple Notification)

buildSrc/src/main/kotlin/ProjectSetting.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ object ProjectSetting {
2424

2525
const val VERSION_MAJOR = 1
2626
const val VERSION_MINOR = 0
27-
const val VERSION_PATCH = 8
27+
const val VERSION_PATCH = 9
2828

2929
const val PROJECT_COMPILE_SDK = 31
3030
const val PROJECT_MIN_SDK = 21

0 commit comments

Comments
 (0)