Skip to content

Commit

Permalink
Release v4.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed May 12, 2022
1 parent cecda4e commit 1f922d4
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

## Version Release

$version_release = 4.3.8
$version_release = 4.3.9

// Suport Library
$admob_version = 20.6.0
Expand Down Expand Up @@ -85,7 +85,7 @@ allprojects {
implementation 'com.unity3d.ads:unity-ads:${unity_ad_version}'

// library frogo-admob-helper
implementation 'com.github.amirisback:frogo-admob:4.3.8'
implementation 'com.github.amirisback:frogo-admob:4.3.9'
}

#### <Option 2> Kotlin DSL
Expand All @@ -98,7 +98,7 @@ allprojects {
implementation("com.unity3d.ads:unity-ads:${unity_ad_version}")

// library frogo-admob
implementation("com.github.amirisback:frogo-admob:4.3.8")
implementation("com.github.amirisback:frogo-admob:4.3.9")
}

### Step 3. Adding meta-data on AndroidManifest.xml
Expand Down
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ plugins {
android {

compileSdk = ProjectSetting.PROJECT_COMPILE_SDK
namespace = ProjectSetting.PROJECT_APP_ID

defaultConfig {
applicationId = ProjectSetting.PROJECT_APP_ID
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.frogobox.appadmob">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:name=".FrogoAdmobApplication"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "7.1.3" apply false
id("com.android.library") version "7.1.3" apply false
id("com.android.application") version "7.2.0" apply false
id("com.android.library") version "7.2.0" apply false
id("org.jetbrains.kotlin.android") version DependencyGradle.KOTLIN_VERSION apply false
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ repositories {
dependencies{

// open-build-src
implementation("com.github.frogobox:open-build-src:1.1.2")
implementation("com.github.frogobox:open-build-src:1.1.3")

}
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ object DependencyGradle {
const val KOTLIN_REFLECT = "org.jetbrains.kotlin:kotlin-reflect:$KOTLIN_VERSION"
const val COMPOSE_VERSION = Version.Androidx.compose

const val FROGO_UI_VERSION = "1.0.1"
const val FROGO_SDK_VERSION = "1.0.5"
const val FROGO_CONSUME_API_VERSION = "2.3.0"
const val FROGO_RECYCLER_VIEW_VERSION = "4.1.5"
const val FROGO_UI_VERSION = "1.0.2"
const val FROGO_SDK_VERSION = "1.0.6"
const val FROGO_CONSUME_API_VERSION = "2.3.1"
const val FROGO_RECYCLER_VIEW_VERSION = "4.1.6"

const val FROGO_UI = "com.github.frogobox:frogo-ui:$FROGO_UI_VERSION"
const val FROGO_SDK = "com.github.frogobox:frogo-sdk:$FROGO_SDK_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 4
const val VERSION_MINOR = 3
const val VERSION_PATCH = 8
const val VERSION_PATCH = 9

const val PROJECT_MIN_SDK = Version.Gradle.minSdk
const val PROJECT_COMPILE_SDK = Version.Gradle.compileSdk
Expand Down
1 change: 1 addition & 0 deletions frogoadmob/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ plugins {
android {

compileSdk = ProjectSetting.PROJECT_COMPILE_SDK
namespace = ProjectSetting.PROJECT_LIB_ID

defaultConfig {
minSdk = ProjectSetting.PROJECT_MIN_SDK
Expand Down
3 changes: 1 addition & 2 deletions frogoadmob/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.frogobox.admob" >
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.INTERNET" />

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip

0 comments on commit 1f922d4

Please sign in to comment.