This repository was archived by the owner on Feb 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +45
-14
lines changed Expand file tree Collapse file tree 3 files changed +45
-14
lines changed Original file line number Diff line number Diff line change
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/
Original file line number Diff line number Diff line change @@ -8,20 +8,11 @@ SDK for anything your problem to make easier developing android apps
8
8
## Version Release
9
9
This Is Latest Release
10
10
11
- $version_release = 2.0.6
11
+ $version_release = 2.0.7
12
12
13
13
What's New??
14
14
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 *
25
16
26
17
## Download this project
27
18
@@ -57,14 +48,14 @@ allprojects {
57
48
58
49
dependencies {
59
50
// 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 '
61
52
}
62
53
63
54
#### <Option 2> Kotlin DSL Gradle
64
55
65
56
dependencies {
66
57
// 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 ")
68
59
}
69
60
70
61
### Step 3. Function from this SDK
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ object ProjectSetting {
27
27
28
28
const val VERSION_MAJOR = 2
29
29
const val VERSION_MINOR = 0
30
- const val VERSION_PATCH = 6
30
+ const val VERSION_PATCH = 7
31
31
32
32
const val PROJECT_COMPILE_SDK = 31
33
33
const val PROJECT_MIN_SDK = 21
You can’t perform that action at this time.
0 commit comments