application stop responding after splash screen

  • Replies:11
  • Answered
Priyanka Srivastava
  • Forum posts: 11

Apr 12, 2017, 1:38:01 PM via Website

04-12 13:30:13.513 2440-2865/com.google.android.gms I/FA-SVC: App measurement is starting up, version: 10298
04-12 13:30:15.044 2440-2985/com.google.android.gms I/FA-SVC: This instance being marked as an uploader
04-12 13:31:05.818 2440-2449/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/networkstatistics.sqlite' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
04-12 13:31:36.235 2440-2449/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/metrics.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
04-12 13:31:36.241 2440-2449/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/help_responses.db.18' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
04-12 13:31:36.244 2440-2449/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/auto_complete_suggestions.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.

Reply
Dev Lt
  • Forum posts: 54

Apr 12, 2017, 8:08:19 PM via Website

It seems that you do not close database connection. Btw, maybe you can post your android manifest file?

Priyanka Srivastava

Reply
Priyanka Srivastava
  • Forum posts: 11

Apr 13, 2017, 7:06:37 AM via Website



<application
    android:allowBackup="true"
    android:icon="@mipmap/logo"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    android:name="com.ex.nishkarsh.nishkarsh.app.AppController"
    tools:ignore="AllowBackup,GoogleAppIndexingWarning">
    <activity
        android:name=".SplashScreen"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>
    <!--suppress AndroidDomInspection -->
    <activity android:name=".login">
    </activity>
    <activity
        android:name=".adBanner"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".brand"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>
    <activity
        android:name=".eduBanner"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".farmer"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".health"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".media"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>
    <activity
        android:name=".payment"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".politicalBanner"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".sendReferral"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".signup"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name=".wallet"
        android:label="@string/app_name">
    </activity>
</application>

Reply
Dev Lt
  • Forum posts: 54

Apr 13, 2017, 7:49:33 AM via Website

maybe try to add

category android:name="android.intent.category.DEFAULT"

to your main activity intent-filter?

— modified on Apr 13, 2017, 7:50:16 AM

Reply
Priyanka Srivastava
  • Forum posts: 11

Apr 13, 2017, 8:20:15 AM via Website

no its not works same eror show in logcat

Reply
Dev Lt
  • Forum posts: 54

Apr 13, 2017, 2:55:37 PM via Website

It's weird. Maybe you could send me the project and I will take look? (of course, if it's not a top secret). You can uppload it to Google Drive or Dropbox and give me the link.

Reply
Priyanka Srivastava
  • Forum posts: 11

Apr 14, 2017, 7:25:50 AM via Website

its resolve bt iv face another prblm

Reply
Taiduol
  • Forum posts: 11

Apr 14, 2017, 11:31:59 AM via Website

You can check whether the data is missing, or damaged equipment

Reply
Priyanka Srivastava
  • Forum posts: 11

Apr 18, 2017, 7:09:17 AM via Website

it resolve

Reply
Pmscaoller
  • Forum posts: 11

Apr 18, 2017, 9:43:40 AM via Website

Thanks for your sharing

Reply
York Johnson
  • Forum posts: 10

Apr 18, 2017, 11:56:30 AM via Website

Nice.

— modified on Apr 18, 2017, 11:57:18 AM

Reply
Suhas Gaji
  • Forum posts: 1

Apr 27, 2017, 11:48:03 AM via Website

Can you tell me how to resolve this issue?

Reply