1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-21 16:35:09 -05:00

Rename: ApplicationController -> YaaicApplication.

This commit is contained in:
Sebastian Kaspari 2015-04-04 14:02:28 +02:00
parent 6ee5ed0eff
commit 3e4f8f57bd
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:label="Yaaic" android:label="Yaaic"
android:theme="@style/Theme.Yaaic" android:theme="@style/Theme.Yaaic"
android:allowBackup="true" android:allowBackup="true"
android:name=".ApplicationController"> android:name=".YaaicApplication">
<activity android:name=".activity.MainActivity" <activity android:name=".activity.MainActivity"
android:label="@string/app_name" android:label="@string/app_name"
android:launchMode="standard" > android:launchMode="standard" >

View File

@ -25,7 +25,7 @@ import android.app.Application;
/** /**
* Application implementation for Yaaic. * Application implementation for Yaaic.
*/ */
public class ApplicationController extends Application { public class YaaicApplication extends Application {
@Override @Override
public void onCreate() { public void onCreate() {
super.onCreate(); super.onCreate();