Uploading App

Nyptop

Active Member
Licensed User
Longtime User
When I try to upload the app it says that it cannot locate the AndroidMainfestXML file. Could somebody help me with this.
 

Nyptop

Active Member
Licensed User
Longtime User
Ok thank you and I will contact the support @erel. One problem still, it tells me that I need to set version name in the AndroidMaifest.XML. Without any competence in XML myself could somebody guide me as to the correct way to go around this. Thanks,

Neil
 
Upvote 0

susu

Well-Known Member
Licensed User
Longtime User
You can do it manually.
Open AndroidManifest.xml by using NotePad. Edit your version code like below:

android:versionCode="1"
android:versionName="1.0"

Save it and make it read only. Try recompile it.
 
Upvote 0

Nyptop

Active Member
Licensed User
Longtime User
Thanks for the help, I have done everything that I have been instructed to do, but for some reason it still is telling me that the versionname must be set.
 
Upvote 0

Nyptop

Active Member
Licensed User
Longtime User
When I try to upload the XML file it tells me invalid value. Here is the code though:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sheeny.sheeny"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="internalOnly">
<uses-sdk android:minSdkVersion="4" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
<application android:icon="@drawable/icon" android:label="Charlie Sheen In My Pocket">

<activity android:windowSoftInputMode="stateHidden" android:launchMode="singleTop" android:name=".main"
android:label="Charlie Sheen In My Pocket" android:screenOrientation="unspecified">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>


</application>
<uses-permission android:name="android.permission.INTERNET"/>


</manifest>
 
Upvote 0

Nyptop

Active Member
Licensed User
Longtime User
Also, should the XML file been able to be uploaded onto this site? If so do you think there could be another issue?
 
Upvote 0
Top