Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7985527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T11:34:56+00:00 2026-06-04T11:34:56+00:00

My Manifest file is below <?xml version=1.0 encoding=utf-8?> <manifest xmlns:android=http://schemas.android.com/apk/res/android package=FXPAL.Unity.Android android:versionCode=1 android:versionName=1.0 >

  • 0
My Manifest file is below




<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="FXPAL.Unity.Android"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:theme="@android:style/Theme.Light" android:name=".UnityMobileApp" android:debuggable="true"
    android:label="@string/app_name" >
    <activity
        android:name=".UnityMain"
        android:label="@string/app_name" 
        android:theme="@android:style/Theme.Light.NoTitleBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
        <intent-filter>
            <action android:name="FXPAL.Unity.Android.LAUNCH" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity android:name=".IndividualViewActivity"
        android:label="@string/app_name" android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".EditPreferences" android:label="@string/app_name">
    </activity>
    <activity android:name=".LoginActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".SendPingActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".ReceivePingActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".SendNudgeActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".PlacesActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".IncomingCallActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".ReceiveNudgeActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".ConfirmNudgeActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".FinalNudgeActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <activity android:name=".ReportingActivity" android:label="@string/app_name"
        android:theme="@style/PageStyle">
    </activity>
    <service android:name=".ReportingService" />
    <receiver android:name=".StartupReceiver">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <category android:name="android.intent.category.HOME" />
        </intent-filter>
    </receiver>
    <receiver android:name=".PingNudgeReceiver">
        <intent-filter>
            <action android:name="com.xtify.android.sdk.SHOW_NOTIFICATION" />
            <!-- KEEP THE FORWARD SLASH IN FRONT OF THE API KEY ON THE LINE BELOW -->
            <data android:scheme="notif" android:host="notification.xtify.com"
                android:pathPrefix="/8d55490a-43ec-42d3-90f8-57c91ab06ce8" />
        </intent-filter>
    </receiver>
    <activity android:name="com.xtify.android.sdk.SettingsActivity"
        android:label="Settings">
    </activity>
    <activity android:name="com.xtify.android.sdk.NotificationDetailsActivity"
        android:label="Notification Details">
    </activity>
    <activity android:name="com.xtify.android.sdk.NotificationSettingsActivity"
        android:label="Notification Settings">
    </activity>
    <service android:name="com.xtify.android.sdk.MainService"
        android:label="Notifications Service">
        <intent-filter>
            <action android:name="com.xtify.android.sdk.IMainService" />
            <category android:name="com.xtify.android.sdk.IMainService" />
            <category android:name="com.xtify.android.sdk.IMainService.V1033"/>

        </intent-filter>
    </service>
    <receiver android:name="com.xtify.android.sdk.MainReceiver">
        <intent-filter>
            <!-- <action android:name="com.xtify.android.sdk.SHOW_NOTIFICATION" /> -->
            <action android:name="com.xtify.android.sdk.NOTIFICATION_CLICKED" />
            <action android:name="com.xtify.android.sdk.NOTIFICATION_CLEARED" />
            <!-- MAKE SURE THE API KEY ON THE NEXT LINE IS PRECEDED BY A SLASH -->
            <data android:scheme="notif" android:host="notification.xtify.com"
                android:pathPrefix="/8d55490a-43ec-42d3-90f8-57c91ab06ce8" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
            <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
            <action android:name="com.xtify.android.sdk.SEND_SETTINGS" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.PACKAGE_ADDED" />
            <action android:name="android.intent.action.PACKAGE_REMOVED" />
            <data android:scheme="package" />
        </intent-filter>
    </receiver>
    <meta-data android:name="XTIFY_SDK_API_KEY"
        android:value="8d55490a-43ec-42d3-90f8-57c91ab06ce8" />

</application>
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.GET_TASKS"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>

   My LogCat File is

05-16 23:07:48.029: E/dalvikvm(768): Could not find class 'com.commonsware.cwac.merge.MergeAdapter', referenced from method FXPAL.Unity.Android.UnityMain.updateView
05-16 23:07:48.289: E/dalvikvm(768): Could not find class 'com.xtify.android.sdk.PersistentLocationManager', referenced from method         FXPAL.Unity.Android.ReportingService.onCreate
05-16 23:07:48.619: E/AndroidRuntime(768): FATAL EXCEPTION: main
05-16 23:07:48.619: E/AndroidRuntime(768): java.lang.NoClassDefFoundError: com.xtify.android.sdk.PersistentLocationManager
05-16 23:07:48.619: E/AndroidRuntime(768):  at FXPAL.Unity.Android.ReportingService.onCreate(ReportingService.java:240)
05-16 23:07:48.619: E/AndroidRuntime(768):  at android.app.ActivityThread.handleCreateService(ActivityThread.java:2253)
05-16 23:07:48.619: E/AndroidRuntime(768):  at android.app.ActivityThread.access$1600(ActivityThread.java:123)
05-16 23:07:48.619: E/AndroidRuntime(768):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1201)
05-16 23:07:48.619: E/AndroidRuntime(768):  at android.os.Handler.dispatchMessage(Handler.java:99)
05-16 23:07:48.619: E/AndroidRuntime(768):  at android.os.Looper.loop(Looper.java:137)
05-16 23:07:48.619: E/AndroidRuntime(768):  at android.app.ActivityThread.main(ActivityThread.java:4424)
05-16 23:07:48.619: E/AndroidRuntime(768):  at java.lang.reflect.Method.invokeNative(Native Method)
05-16 23:07:48.619: E/AndroidRuntime(768):  at java.lang.reflect.Method.invoke(Method.java:511)
05-16 23:07:48.619: E/AndroidRuntime(768):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
05-16 23:07:48.619: E/AndroidRuntime(768):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
05-16 23:07:48.619: E/AndroidRuntime(768):  at dalvik.system.NativeStart.main(Native Method)
05-16 23:22:50.419: E/dalvikvm(790): Could not find class 'com.xtify.android.sdk.PersistentLocationManager', referenced from method FXPAL.Unity.Android.ReportingService.onCreate
05-16 23:22:50.529: E/AndroidRuntime(790): FATAL EXCEPTION: main
05-16 23:22:50.529: E/AndroidRuntime(790): java.lang.NoClassDefFoundError: com.xtify.android.sdk.PersistentLocationManager
05-16 23:22:50.529: E/AndroidRuntime(790):  at FXPAL.Unity.Android.ReportingService.onCreate(ReportingService.java:240)
05-16 23:22:50.529: E/AndroidRuntime(790):  at android.app.ActivityThread.handleCreateService(ActivityThread.java:2253)
05-16 23:22:50.529: E/AndroidRuntime(790):  at android.app.ActivityThread.access$1600(ActivityThread.java:123)
05-16 23:22:50.529: E/AndroidRuntime(790):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1201)
05-16 23:22:50.529: E/AndroidRuntime(790):  at android.os.Handler.dispatchMessage(Handler.java:99)
05-16 23:22:50.529: E/AndroidRuntime(790):  at android.os.Looper.loop(Looper.java:137)
05-16 23:22:50.529: E/AndroidRuntime(790):  at android.app.ActivityThread.main(ActivityThread.java:4424)
05-16 23:22:50.529: E/AndroidRuntime(790):  at java.lang.reflect.Method.invokeNative(Native Method)
05-16 23:22:50.529: E/AndroidRuntime(790):  at java.lang.reflect.Method.invoke(Method.java:511)
05-16 23:22:50.529: E/AndroidRuntime(790):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
05-16 23:22:50.529: E/AndroidRuntime(790):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
05-16 23:22:50.529: E/AndroidRuntime(790):  at dalvik.system.NativeStart.main(Native Method)

I am trying to upgrade my android SDK from 2.2 to 4.0.3. I found many issues. I was able to clear some of them. But still there are few left. Can you please look at these errors and help me out in fixing them.

I was looking at these for 3 days, but still the situation is same. I didnt get any compilation errors, but while executing I got the errors shown in the logcat. It says class not found. But I tried in many different forums but was not successful in getting them resolved.

Looking forward to your reply friends.

Regards,
Rakesh

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T11:34:57+00:00Added an answer on June 4, 2026 at 11:34 am

    When using the latest SDK, you need to ensure that all of your external libraries are in a directory called libs.

    Move your libraries into the libs directory and clean/build your project again.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

here is the XML file : <com.google.android.maps.MapView android:layout_width=fill_parent android:layout_height=fill_parent android:apiKey=0q7NUYm4bgzeXlqXtKYVPJDRWUJmt8Cu0gvbWMx android:id=@+id/map_view /> and Manifest
I have a Flex-app.xml. The actual manifest in the apk file seems to be
I am getting below look like file in the MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus
If I am using a cache manifest file like so CACHE MANIFEST: #version 1.0
I want to use the version number from the manifest file in my extension.
I'd like to add an Implementation-Version line to a manifest in my jar file
I am trying to implement this example http://www.javacodegeeks.com/2011/02/android-google-maps-tutorial.html and i have followed exactly all
I'm able to read the Manifest file inside of my Java code, but I
I have 3 gits wrapped by a manifest file (this manifest file is in
I have cache static resources of my website using manifest file But when I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.