


Klethron wrote:Nevermind, I figured it out, a little caffeine and anything is possibleKlethron wrote:Here's what I am having a hard time with so please forgive me if it sound completely noobish.
I have a application_name.java and a splash.java, I have my main.xml and a splash.xml for the splashscreen. I have my androidmanifest.xml with the activities and what have you. I load the app and for some reason It crashes every single time. Do I need to merge the 2 .java files together or what in the heck am I doing wrong here?
Here is my manifest fileUsing xml Syntax Highlighting
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.MainApp" android:versionCode="4" android:versionName="1.5.1"> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".Splash" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".MainApp" android:label="@string/app_name" android:screenOrientation="portrait" android:launchMode="standard"> <intent-filter> <action android:name="android.intent.action.DEFAULT" /> <category android:name="android.intent.category.VIEW" /> </intent-filter> </activity> </application> </manifest> Parsed in 0.005 seconds, using GeSHi 1.0.8.4












Users browsing this forum: No registered users and 3 guests