Skip to content

Commit

Permalink
Release version 113
Browse files Browse the repository at this point in the history
  • Loading branch information
bagaturchess committed Oct 29, 2022
1 parent ee4a780 commit 6e0609d
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 19 deletions.
20 changes: 16 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ plugins {
}

android {
compileSdkVersion 30
compileSdkVersion 31
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "com.stoptheballs"
minSdkVersion 23
targetSdkVersion 30
versionCode 109
versionName "1.0.9"
targetSdkVersion 31
versionCode 113
versionName "1.1.3"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -26,6 +26,18 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

namespace 'com.stoptheballs'

android.applicationVariants.all { variant ->
variant.outputs.all {
println variant.name
if (variant.name.contains("release")) {
outputFileName = new File("../../../../../../release", "com.stoptheballs_${variant.versionCode}_ads_home.apk")
println outputFileName
}
}
}
}

dependencies {
Expand Down
28 changes: 18 additions & 10 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stoptheballs"
android:installLocation="auto">


Expand Down Expand Up @@ -46,7 +45,8 @@
android:name="org.metatrans.apps.balloons.main.Activity_Main_StopTheBalls"
android:screenOrientation="landscape"
android:hardwareAccelerated="true"
android:theme="@style/AppTheme" >
android:theme="@style/AppTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -57,7 +57,8 @@
<activity
android:name="org.metatrans.apps.balloons.main.Activity_Result"
android:icon="@drawable/ic_colours_tube"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -69,7 +70,8 @@
android:name="org.metatrans.apps.balloons.menu.Activity_Menu_Levels"
android:icon="@drawable/ic_rainbow"
android:label="@string/levels"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -80,7 +82,8 @@
<activity
android:name="org.metatrans.apps.balloons.menu.Activity_Menu_Main"
android:label="@string/menu_main"
android:theme="@style/AppTheme" >
android:theme="@style/AppTheme"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -92,7 +95,8 @@
android:name="org.metatrans.commons.marketing.Activity_Marketing_AppList"
android:icon="@drawable/ic_colours_tube"
android:label="@string/label_moregames"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -104,7 +108,8 @@
android:name="org.metatrans.commons.menu.Activity_Menu_Colours_Base"
android:icon="@drawable/ic_rainbow"
android:label="@string/menu_colour_scheme"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -116,7 +121,8 @@
android:name="org.metatrans.commons.engagement.achievements.Activity_Achievements_Base"
android:icon="@drawable/ic_achievements"
android:label="@string/achievements"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -128,7 +134,8 @@
android:name="org.metatrans.commons.engagement.achievements.Activity_Picture"
android:icon="@drawable/ic_achievements"
android:label="@string/achievement"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -137,7 +144,8 @@


<activity
android:name="org.metatrans.apps.balloons.loading.Activity_Loading">
android:name="org.metatrans.apps.balloons.loading.Activity_Loading"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.2"
classpath 'com.android.tools.build:gradle:7.3.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -15,7 +15,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}

Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/113.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Interstitial home ads are disabled on re-play button click.
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
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
2 changes: 1 addition & 1 deletion gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ set CMD_LINE_ARGS=%*
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar

@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% --warning-mode=all

:end
@rem End local scope for the variables with windows NT shell
Expand Down

0 comments on commit 6e0609d

Please sign in to comment.