Skip to content

Commit d4dc282

Browse files
committed
Add ClassRegistry and rename Activities
1 parent c651e20 commit d4dc282

17 files changed

+118
-416
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Thumbs.db
2828

2929
# Android Studio
3030
.idea
31-
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
3231
.gradle
3332
build/
33+
*.iml
3434

3535
# The roundware-android project expects on a module named 'app', but it is not in repo.
3636
# Copy 'app-starter' to 'app' to get started.

app-starter/app.iml

-91
This file was deleted.

app-starter/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android {
55
buildToolsVersion "21.1.2"
66

77
defaultConfig {
8-
applicationId "org.roundware.app_start"
8+
applicationId "org.roundware.app_starter"
99
minSdkVersion 9
1010
targetSdkVersion 21
1111
versionCode 1
+13-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="org.roundware.app_start">
3-
4-
<application android:allowBackup="true" android:label="@string/app_name"
5-
>
2+
package="org.roundware.app_starter">
63

4+
<application android:label="@string/app_name"
5+
android:allowBackup="true">
6+
<activity android:name=".MainActivity"
7+
android:label="@string/app_name"
8+
android:launchMode="singleInstance"
9+
android:configChanges="keyboardHidden|orientation|screenSize"
10+
android:screenOrientation="portrait">
11+
<intent-filter>
12+
<action android:name="android.intent.action.MAIN" />
13+
<category android:name="android.intent.category.LAUNCHER" />
14+
</intent-filter>
15+
</activity>
716
</application>
817
</manifest>

roundware-android-fam.iml

-21
This file was deleted.

rwapp/rwapp.iml

-94
This file was deleted.

rwapp/src/main/AndroidManifest.xml

+5-17
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
android:glEsVersion="0x00020000"
1717
android:required="true"/>
1818

19-
2019
<application
21-
android:name="org.roundware.rwapp.MyApplication"
20+
android:name=".RwApplication"
2221
android:allowBackup="true"
2322
android:hardwareAccelerated="true"
2423
android:icon="@drawable/ic_launcher"
@@ -27,19 +26,8 @@
2726
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
2827
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@string/google_maps_key" />
2928

30-
<activity android:name=".activity.MainActivity"
31-
android:label="@string/app_name"
32-
android:launchMode="singleInstance"
33-
android:configChanges="keyboardHidden|orientation|screenSize"
34-
android:screenOrientation="portrait">
35-
<intent-filter>
36-
<action android:name="android.intent.action.MAIN" />
37-
<category android:name="android.intent.category.LAUNCHER" />
38-
</intent-filter>
39-
</activity>
40-
4129
<activity
42-
android:name=".activity.ListenActivity"
30+
android:name=".RwListenActivity"
4331
android:label="@string/title_activity_listen"
4432
android:launchMode="singleInstance"
4533
android:configChanges="keyboardHidden|orientation|screenSize"
@@ -48,7 +36,7 @@
4836
</activity>
4937

5038
<activity
51-
android:name=".activity.SpeakActivity"
39+
android:name=".RwSpeakActivity"
5240
android:label="@string/title_activity_speak"
5341
android:launchMode="singleInstance"
5442
android:configChanges="keyboardHidden|orientation|screenSize"
@@ -57,12 +45,12 @@
5745
</activity>
5846

5947
<activity
60-
android:name=".activity.PrefsActivity"
48+
android:name=".RwPrefsActivity"
6149
android:label="@string/title_activity_prefs" >
6250
</activity>
6351

6452
<activity
65-
android:name=".activity.ExploreActivity"
53+
android:name=".RwExploreActivity"
6654
android:label= "@string/title_activity_explore"
6755
android:launchMode="singleInstance"
6856
android:configChanges="keyboardHidden|orientation|screenSize"

rwapp/src/main/java/org/roundware/rwapp/MyApplication.java

-22
This file was deleted.

0 commit comments

Comments
 (0)