android - Apportable conversion VerdeActivity error -
hi , in advance,
i'm new apportable , i'm trying port ios app. can build app no error when try "load"(apportable load) or "debug" (apportable debug) on device or emulatior recieve message ".verdeactivity class not exists".
i have read this question i'm having same problem after modifications.
can me?
here manifest
<?xml version="1.0" encoding="utf-8"?> <!-- begin_include(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="lallo" android:shareduserid="lallo" android:installlocation="auto" android:versioncode="1373630001" android:versionname="1.1.1"> <supports-gl-texture android:name="gl_oes_compressed_etc1_rgb8_texture" /> <uses-sdk android:minsdkversion="8" android:targetsdkversion="17" /> <uses-permission android:name="android.permission.internet" /> <supports-screens android:resizeable="true" android:normalscreens="true" android:largescreens="true" android:smallscreens="false"/> <application android:label="@string/app_name" android:name="com.apportable.app.verdeapplication" android:hascode="true" android:icon="@drawable/icon" android:theme="@style/fullscreenactivity" android:debuggable="true" android:largeheap="false" android:hardwareaccelerated="true"> <meta-data android:name="android.app.libs" android:value="v cxx system objc ffi pthread_workqueue dispatch foundation bridgekit openal verde" /> <meta-data android:name="android.app.lib_name" android:value="verde" /> <meta-data android:name="android.app_name" android:value="lallo" /> <meta-data android:name="apportable.splash_screen_type" android:value="letterbox" /> <meta-data android:name="apportable.orientation" android:value="landscape" /> <meta-data android:name="apportable.opengles2" android:value="true" /> <meta-data android:name="apportable.opengles.fast_color" android:value="true" /> <activity android:name="com.apportable.activity.verdeactivity" android:configchanges="mcc|mnc|locale|touchscreen|keyboard|keyboardhidden|navigation|screenlayout|fontscale|uimode|orientation|screensize|smallestscreensize" android:label="@string/app_name" android:screenorientation="landscape" android:windowsoftinputmode="adjustpan" android:launchmode="singletask"> <intent-filter> <action android:name="android.intent.action.view" /> <category android:name="android.intent.category.default" /> <category android:name="android.intent.category.browsable" /> <data android:scheme="fb361458087289348"/> </intent-filter> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <service android:enabled="true" android:name="com.apportable.activity.gdbserverservice" android:label="@string/app_name" android:icon="@drawable/icon"> <intent-filter > <action android:name="lallo.gdbserverservice" /> </intent-filter> </service> </application> </manifest>
here complete error message
3052 kb/s (33870847 bytes in 10.834s) pkg: /data/local/tmp/lallo-debug.apk failure [install_failed_invalid_apk] starting: intent { cmp=lallo/com.apportable.activity.verdeactivity (has extras) } error type 3 error: activity class {lallo/com.apportable.activity.verdeactivity} not exist.
your package name "lallo". need package name dots in there. qualified reverse dns name of company package name.
for example:
com.apportable.spin
you can change in .approj/configuration.json file.
hope helps.
Comments
Post a Comment