Skip to content

Commit

Permalink
Fix class names of android activities
Browse files Browse the repository at this point in the history
MetatransApps committed Sep 4, 2021
1 parent 4bc92b8 commit 0726ef4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -32,18 +32,18 @@
android:icon="@drawable/ic_logo_balls"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:name="com.stoptheballs.app.Application_2DBalloons">
android:name="org.metatrans.apps.balloons.app.Application_2DBalloons">


<activity
android:name="com.apps.mobile.android.commons.web.Activity_WebView_StatePreservingImpl_With_VideoPlayer"
android:name="org.metatrans.commons.web.Activity_WebView_StatePreservingImpl_With_VideoPlayer"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:hardwareAccelerated="true"
android:theme="@style/AppTheme"/>


<activity
android:name="com.stoptheballs.main.Activity_Main_StopTheBalls"
android:name="org.metatrans.apps.balloons.main.Activity_Main_StopTheBalls"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:hardwareAccelerated="true"
@@ -56,7 +56,7 @@


<activity
android:name="com.stoptheballs.main.Activity_Result"
android:name="org.metatrans.apps.balloons.main.Activity_Result"
android:icon="@drawable/ic_colours_tube"
android:theme="@style/AppTheme">
<intent-filter>
@@ -67,7 +67,7 @@


<activity
android:name="com.stoptheballs.menu.Activity_Menu_Levels"
android:name="org.metatrans.apps.balloons.menu.Activity_Menu_Levels"
android:icon="@drawable/ic_rainbow"
android:label="@string/levels"
android:theme="@style/AppBaseTheme">
@@ -79,7 +79,7 @@


<activity
android:name="com.stoptheballs.menu.Activity_Menu_Main"
android:name="org.metatrans.apps.balloons.menu.Activity_Menu_Main"
android:label="@string/menu_main"
android:theme="@style/AppBaseTheme" >
<intent-filter>
@@ -90,7 +90,7 @@


<activity
android:name="com.apps.mobile.android.commons.marketing.Activity_Marketing_AppList"
android:name="org.metatrans.commons.marketing.Activity_Marketing_AppList"
android:icon="@drawable/ic_colours_tube"
android:label="@string/label_moregames"
android:theme="@style/AppBaseTheme">
@@ -102,7 +102,7 @@


<activity
android:name="com.apps.mobile.android.commons.menu.Activity_Menu_Colours_Base"
android:name="org.metatrans.commons.menu.Activity_Menu_Colours_Base"
android:icon="@drawable/ic_rainbow"
android:label="@string/menu_colour_scheme"
android:theme="@style/AppBaseTheme">
@@ -114,7 +114,7 @@


<activity
android:name="com.apps.mobile.android.commons.engagement.achievements.Activity_Achievements_Base"
android:name="org.metatrans.commons.engagement.achievements.Activity_Achievements_Base"
android:icon="@drawable/ic_achievements"
android:label="@string/achievements"
android:theme="@style/AppBaseTheme">
@@ -127,7 +127,7 @@


<activity
android:name="com.apps.mobile.android.commons.engagement.achievements.Activity_Picture"
android:name="org.metatrans.commons.engagement.achievements.Activity_Picture"
android:icon="@drawable/ic_achievements"
android:label="@string/achievement"
android:theme="@style/AppBaseTheme">
@@ -140,7 +140,7 @@


<activity
android:name="com.stoptheballs.loading.Activity_Loading"
android:name="org.metatrans.apps.balloons.loading.Activity_Loading"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

0 comments on commit 0726ef4

Please sign in to comment.