I'm not really that fluent in AndroidManifest syntax, so I don't see
another problem.

On Thu, Sep 10, 2009 at 5:51 PM, WoodManEXP <woodman...@gmail.com> wrote:
>
> OK, I'll place that inside the application tag.
>
> The XML looks like this now. Can you tell if the other things in there
> are placed correctly?
>
> Thank you!
>
> <?xml version="1.0" encoding="utf-8"?>
> <manifest xmlns:android="http://schemas.android.com/apk/res/android";
>      package="com.MyApp"
>      android:versionCode="1"
>      android:versionName="1.3">
>    <application android:icon="@drawable/icon" android:label="@string/
> app_name">
>        <activity
>                android:name=".MyApp"
>             android:label="@string/app_name"
>            >
>            <intent-filter>
>                <action android:name="android.intent.action.MAIN" />
>                <category
> android:name="android.intent.category.LAUNCHER" />
>            </intent-filter>
>        </activity>
>        <uses-library android:name="android.test.runner" />
>
>    </application>
>    <uses-sdk android:minSdkVersion="3" />
>
>    <instrumentation
>        android:name="android.test.InstrumentationTestRunner"
>        android:targetPackage="com.MyApp"
>        android:label="MyApp" />
>
>    <uses-permission android:name="android.permission.INTERNET"></uses-
> permission>
>
> </manifest>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to