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

  • SEARCH
  • Home
  • 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 8693839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T00:38:08+00:00 2026-06-13T00:38:08+00:00

I am new to Oracle database mobile server. In followed the official tutorial and

  • 0

I am new to Oracle database mobile server. In followed the official tutorial and documentation from here & here . I downloaded the Oracle Mobile server from here.
Following the tutorial ,

  • I installed MDK
  • Opened the sample project from the directory <MDK_ROOT>\Mobile\Sdk\samples\Sync\android\simple_sync_android
  • and done the Java Build Path exercises
  • No Errors were showed up in eclipse.
  • Then I chose RUN AS -> Android application

That showed up the emulator and console showed a successful install… so far so good.

10-13 11:58:07.588: E/AndroidRuntime(654): FATAL EXCEPTION: main
10-13 11:58:07.588: E/AndroidRuntime(654): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{tests.sync/tests.sync.MainAct}: java.lang.ClassNotFoundException: tests.sync.MainAct
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1983)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.app.ActivityThread.access$600(ActivityThread.java:130)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.os.Handler.dispatchMessage(Handler.java:99)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.os.Looper.loop(Looper.java:137)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.app.ActivityThread.main(ActivityThread.java:4745)
10-13 11:58:07.588: E/AndroidRuntime(654):  at java.lang.reflect.Method.invokeNative(Native Method)
10-13 11:58:07.588: E/AndroidRuntime(654):  at java.lang.reflect.Method.invoke(Method.java:511)
10-13 11:58:07.588: E/AndroidRuntime(654):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
10-13 11:58:07.588: E/AndroidRuntime(654):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
10-13 11:58:07.588: E/AndroidRuntime(654):  at dalvik.system.NativeStart.main(Native Method)
10-13 11:58:07.588: E/AndroidRuntime(654): Caused by: java.lang.ClassNotFoundException: tests.sync.MainAct
10-13 11:58:07.588: E/AndroidRuntime(654):  at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:61)
10-13 11:58:07.588: E/AndroidRuntime(654):  at java.lang.ClassLoader.loadClass(ClassLoader.java:501)
10-13 11:58:07.588: E/AndroidRuntime(654):  at java.lang.ClassLoader.loadClass(ClassLoader.java:461)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.app.Instrumentation.newActivity(Instrumentation.java:1053)
10-13 11:58:07.588: E/AndroidRuntime(654):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1974)
10-13 11:58:07.588: E/AndroidRuntime(654):  ... 11 more

I checked out the manifest… here it is:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="tests.sync"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".MainAct"
                  android:label="@string/app_name"
                  android:configChanges="orientation" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".TextFileEditor"
                  android:label="@string/app_name"
                  android:configChanges="orientation" >                  
        </activity>        

        <service android:name="oracle.opensync.syncagent.android.SyncAgentService"></service>
    </application>    

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

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.BATTERY_STATS" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>

</manifest> 

I could see all activities listed there (only two classes extends from activity, one is the launcher type). I did nothing inside the code. It is as it is given from Oracle.

I was trying to establish a non-risky data connection with my oracle enterprise database from the android device. That leads me to Oracle database mobile server. The starting itself is stuck here.

All sorts of suggestions and guidance are welcome.

  • 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-13T00:38:09+00:00Added an answer on June 13, 2026 at 12:38 am

    Got the answer 🙂
    I am sharing it here, expecting it to be of help to some other newbie like me ..

    The problem is with the ordering of jar file we imported from the oracle home folder.
    I had to do the following to workaround this:

    • In Eclipse, go to Project Properties
    • Choose Java Build Path
    • Click Order and Export tab
    • Move “MOBILE_SYNC_ANDROID_LIB” entry Up until it is just below the
      /simple/sync_android/src entry
    • Now rebuild and

    this worked for me.
    More info can be available from a simple blog written by DoubleA. Here is the link

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

Sidebar

Related Questions

I have this new challenge to load ~100M rows from an Oracle database and
I have oracle database to move on to new postgresql server. Some tables are
I am new to Oracle database. I see that if I connect as sys
Friends, If I want to know about the new features of Oracle 11gR2 Database
When using NOLOGGING in Oracle, say for inserting new records. Will my database be
I'm Working with a new Oracle DB, with one table having the following indexes:
I am new to Oracle. I have been using SQL-Server for the past 3
Hi I'm new to Oracle 10g. I need retrieve the all the sublist from
I'm trying to get some data from a remote Oracle Database, so I configured
We are building a new application in .net 3.5 with SQL server database. The

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.