diff --git a/.github/workflows/generate-apk-debug.yml b/.github/workflows/generate-apk-debug.yml new file mode 100644 index 0000000..212cf60 --- /dev/null +++ b/.github/workflows/generate-apk-debug.yml @@ -0,0 +1,40 @@ +name: Generate APK Debug + +on: + # Triggers the workflow on push or pull request events but only for default and protected branches + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + + - name: Set Up JDK + uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Change wrapper permissions + run: chmod +x ./gradlew + + # Run Build Project + - name: Build project + run: ./gradlew build + + # Create APK Debug + - name: Build apk debug project (APK) + run: ./gradlew assembleDebug + + # Upload Artifact Build + # Noted For Output [module-name]/build/outputs/ + - name: Upload debug build APK + uses: actions/upload-artifact@v2 + with: + name: App bundle(s) and APK(s) generated + path: app/build/outputs/ \ No newline at end of file diff --git a/README.md b/README.md index fe5daaa..7d3bd7e 100644 --- a/README.md +++ b/README.md @@ -22,20 +22,13 @@ ## Version Release - $version_release = 4.1.4 + $version_release = 4.1.5 What's New?? * Enhance Performance * * Refactoring Code * - * Remove unused code * - * Update documentation * - * Update build.gradle * - * Update sample code * - * Update Android Gradle Plugin 7.0.2 * * Update Admob Library Version 20.5.0 * - * Add Compose Implementation (Experimental) * - * Add Java Sample * ## How To Use / Implement This Project ### Step 1. Add the JitPack repository to your build file @@ -73,7 +66,7 @@ allprojects { implementation 'com.google.android.gms:play-services-ads:${latest_version}' // library frogo-admob-helper - implementation 'com.github.amirisback:frogo-admob:4.1.4' + implementation 'com.github.amirisback:frogo-admob:4.1.5' } ####