Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit b25f365

Browse files
committed
Release v2.0.7
1 parent 7e40ce7 commit b25f365

File tree

3 files changed

+45
-14
lines changed

3 files changed

+45
-14
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 & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,11 @@ SDK for anything your problem to make easier developing android apps
88
## Version Release
99
This Is Latest Release
1010

11-
$version_release = 2.0.6
11+
$version_release = 2.0.7
1212

1313
What's New??
1414

15-
* Update Code *
16-
* Enhance Performance *
17-
* Update: FrogoAdmobActivity to FrogoActivity *
18-
* All Frogo Core Android Development *
19-
* Please Re Import Class and Function *
20-
* Renaming Package frogosdk to sdk *
21-
* Update Android Gradle Plugin 7.0.2 *
22-
* Delete Unused Import and Resources *
23-
* Frogo Music *
24-
* Migrate groovy to Kotlin DSL *
15+
* Update build gradle kts version library *
2516

2617
## Download this project
2718

@@ -57,14 +48,14 @@ allprojects {
5748

5849
dependencies {
5950
// library frogo-sdk
60-
implementation 'com.github.frogobox:frogo-android-sdk:2.0.6'
51+
implementation 'com.github.frogobox:frogo-android-sdk:2.0.7'
6152
}
6253

6354
#### <Option 2> Kotlin DSL Gradle
6455

6556
dependencies {
6657
// library frogo-sdk
67-
implementation("com.github.frogobox:frogo-android-sdk:2.0.6")
58+
implementation("com.github.frogobox:frogo-android-sdk:2.0.7")
6859
}
6960

7061
### Step 3. Function from this SDK

buildSrc/src/main/kotlin/ProjectSetting.kt

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

2828
const val VERSION_MAJOR = 2
2929
const val VERSION_MINOR = 0
30-
const val VERSION_PATCH = 6
30+
const val VERSION_PATCH = 7
3131

3232
const val PROJECT_COMPILE_SDK = 31
3333
const val PROJECT_MIN_SDK = 21

0 commit comments

Comments
 (0)