Android error : com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified
My project android have error when i using admob run in android 5.1
application show log error :
11-15 01:16:13.645 1143-1143/? E/EGL_emulation: tid 1143: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE)
11-15 01:16:13.776 2356-21878/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified.This is content my build.gradle file:
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.exam"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "2.00"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
dependencies
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
exclude group: 'com.android.support', module: 'support-annotations'
)
compile 'com.android.support:appcompat-v7:26.1.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:percent:26.1.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.afollestad.material-dialogs:commons:0.9.5.0'
compile 'com.afollestad.material-dialogs:core:0.9.5.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.google.firebase:firebase-ads:17.1.0'
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
compile 'agency.tango.android:material-intro-screen:0.0.5'
compile 'com.google.firebase:firebase-core:16.0.4'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
compile 'com.github.lzyzsd:circleprogress:1.2.1'
compile 'com.github.hotchemi:android-rate:1.0.1'
apply plugin: 'com.google.gms.google-services'I tried many solution but it not work
Thank for any can fix it. Please help me!
add a comment |
My project android have error when i using admob run in android 5.1
application show log error :
11-15 01:16:13.645 1143-1143/? E/EGL_emulation: tid 1143: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE)
11-15 01:16:13.776 2356-21878/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified.This is content my build.gradle file:
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.exam"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "2.00"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
dependencies
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
exclude group: 'com.android.support', module: 'support-annotations'
)
compile 'com.android.support:appcompat-v7:26.1.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:percent:26.1.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.afollestad.material-dialogs:commons:0.9.5.0'
compile 'com.afollestad.material-dialogs:core:0.9.5.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.google.firebase:firebase-ads:17.1.0'
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
compile 'agency.tango.android:material-intro-screen:0.0.5'
compile 'com.google.firebase:firebase-core:16.0.4'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
compile 'com.github.lzyzsd:circleprogress:1.2.1'
compile 'com.github.hotchemi:android-rate:1.0.1'
apply plugin: 'com.google.gms.google-services'I tried many solution but it not work
Thank for any can fix it. Please help me!
I suugest you replaceimplementionwithcompile
– amir133
Nov 14 '18 at 19:01
@amir133 i tried as you comment but it not working
– NHT
Nov 15 '18 at 18:17
Three question : 1. can you build and run your project onandroid 5.12. Did you have this problem on every android 5.1 device(maybe your play service is outOfDate). 3. did android studio offer some warning or error inbuild.gradleif true I suggest you solve them.
– amir133
Nov 15 '18 at 18:57
add a comment |
My project android have error when i using admob run in android 5.1
application show log error :
11-15 01:16:13.645 1143-1143/? E/EGL_emulation: tid 1143: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE)
11-15 01:16:13.776 2356-21878/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified.This is content my build.gradle file:
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.exam"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "2.00"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
dependencies
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
exclude group: 'com.android.support', module: 'support-annotations'
)
compile 'com.android.support:appcompat-v7:26.1.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:percent:26.1.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.afollestad.material-dialogs:commons:0.9.5.0'
compile 'com.afollestad.material-dialogs:core:0.9.5.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.google.firebase:firebase-ads:17.1.0'
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
compile 'agency.tango.android:material-intro-screen:0.0.5'
compile 'com.google.firebase:firebase-core:16.0.4'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
compile 'com.github.lzyzsd:circleprogress:1.2.1'
compile 'com.github.hotchemi:android-rate:1.0.1'
apply plugin: 'com.google.gms.google-services'I tried many solution but it not work
Thank for any can fix it. Please help me!
My project android have error when i using admob run in android 5.1
application show log error :
11-15 01:16:13.645 1143-1143/? E/EGL_emulation: tid 1143: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE)
11-15 01:16:13.776 2356-21878/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified.This is content my build.gradle file:
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.exam"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "2.00"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
dependencies
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
exclude group: 'com.android.support', module: 'support-annotations'
)
compile 'com.android.support:appcompat-v7:26.1.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:percent:26.1.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.afollestad.material-dialogs:commons:0.9.5.0'
compile 'com.afollestad.material-dialogs:core:0.9.5.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.google.firebase:firebase-ads:17.1.0'
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
compile 'agency.tango.android:material-intro-screen:0.0.5'
compile 'com.google.firebase:firebase-core:16.0.4'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
compile 'com.github.lzyzsd:circleprogress:1.2.1'
compile 'com.github.hotchemi:android-rate:1.0.1'
apply plugin: 'com.google.gms.google-services'I tried many solution but it not work
Thank for any can fix it. Please help me!
11-15 01:16:13.645 1143-1143/? E/EGL_emulation: tid 1143: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE)
11-15 01:16:13.776 2356-21878/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified.11-15 01:16:13.645 1143-1143/? E/EGL_emulation: tid 1143: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE)
11-15 01:16:13.776 2356-21878/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified.compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.exam"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "2.00"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
dependencies
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
exclude group: 'com.android.support', module: 'support-annotations'
)
compile 'com.android.support:appcompat-v7:26.1.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:percent:26.1.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.afollestad.material-dialogs:commons:0.9.5.0'
compile 'com.afollestad.material-dialogs:core:0.9.5.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.google.firebase:firebase-ads:17.1.0'
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
compile 'agency.tango.android:material-intro-screen:0.0.5'
compile 'com.google.firebase:firebase-core:16.0.4'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
compile 'com.github.lzyzsd:circleprogress:1.2.1'
compile 'com.github.hotchemi:android-rate:1.0.1'
apply plugin: 'com.google.gms.google-services'compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.exam"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "2.00"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
dependencies
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
exclude group: 'com.android.support', module: 'support-annotations'
)
compile 'com.android.support:appcompat-v7:26.1.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:percent:26.1.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.afollestad.material-dialogs:commons:0.9.5.0'
compile 'com.afollestad.material-dialogs:core:0.9.5.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.google.firebase:firebase-ads:17.1.0'
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
compile 'agency.tango.android:material-intro-screen:0.0.5'
compile 'com.google.firebase:firebase-core:16.0.4'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
compile 'com.github.lzyzsd:circleprogress:1.2.1'
compile 'com.github.hotchemi:android-rate:1.0.1'
apply plugin: 'com.google.gms.google-services'asked Nov 14 '18 at 18:37
NHTNHT
44111
44111
I suugest you replaceimplementionwithcompile
– amir133
Nov 14 '18 at 19:01
@amir133 i tried as you comment but it not working
– NHT
Nov 15 '18 at 18:17
Three question : 1. can you build and run your project onandroid 5.12. Did you have this problem on every android 5.1 device(maybe your play service is outOfDate). 3. did android studio offer some warning or error inbuild.gradleif true I suggest you solve them.
– amir133
Nov 15 '18 at 18:57
add a comment |
I suugest you replaceimplementionwithcompile
– amir133
Nov 14 '18 at 19:01
@amir133 i tried as you comment but it not working
– NHT
Nov 15 '18 at 18:17
Three question : 1. can you build and run your project onandroid 5.12. Did you have this problem on every android 5.1 device(maybe your play service is outOfDate). 3. did android studio offer some warning or error inbuild.gradleif true I suggest you solve them.
– amir133
Nov 15 '18 at 18:57
I suugest you replace
implemention with compile– amir133
Nov 14 '18 at 19:01
I suugest you replace
implemention with compile– amir133
Nov 14 '18 at 19:01
@amir133 i tried as you comment but it not working
– NHT
Nov 15 '18 at 18:17
@amir133 i tried as you comment but it not working
– NHT
Nov 15 '18 at 18:17
Three question : 1. can you build and run your project on
android 5.1 2. Did you have this problem on every android 5.1 device(maybe your play service is outOfDate). 3. did android studio offer some warning or error in build.gradle if true I suggest you solve them.– amir133
Nov 15 '18 at 18:57
Three question : 1. can you build and run your project on
android 5.1 2. Did you have this problem on every android 5.1 device(maybe your play service is outOfDate). 3. did android studio offer some warning or error in build.gradle if true I suggest you solve them.– amir133
Nov 15 '18 at 18:57
add a comment |
1 Answer
1
active
oldest
votes
Add below line build.gradle
implementation 'com.google.android.gms:play-services-ads:17.0.0'
If you are using 17+ AdMob sdk you need to specify app id in AndroidManifest.xml file. You can find your app id in Admob App settings
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/app_id"/>
after adding above code try uninstalling the app manually and reinstall again without making any changes. Also replace your compile with implementation.
i tried as you comment above but it not working. i run it on android 5.1 Application not start and show error : "11-16 01:16:28.655 1144-1144/? E/EGL_emulation: tid 1144: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE) 11-16 01:16:28.726 1933-2191/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified." With device run android 7 Application run ok
– NHT
Nov 15 '18 at 18:20
If it's not confidential could you please send complete code to my email address? Here is my email address gutteraj7@gmail.com I will check and find out what is the problem.
– VikaS
Nov 15 '18 at 18:23
So sorry.This is project of my company. i can't send for you source full but I will try create small project had this error and send for you after complete. Thanks you very much
– NHT
Nov 15 '18 at 18:36
Sure I will try my best to resolve
– VikaS
Nov 15 '18 at 18:36
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53306760%2fandroid-error-com-google-android-gms-persistent-e-networkscheduler-invalid-co%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Add below line build.gradle
implementation 'com.google.android.gms:play-services-ads:17.0.0'
If you are using 17+ AdMob sdk you need to specify app id in AndroidManifest.xml file. You can find your app id in Admob App settings
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/app_id"/>
after adding above code try uninstalling the app manually and reinstall again without making any changes. Also replace your compile with implementation.
i tried as you comment above but it not working. i run it on android 5.1 Application not start and show error : "11-16 01:16:28.655 1144-1144/? E/EGL_emulation: tid 1144: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE) 11-16 01:16:28.726 1933-2191/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified." With device run android 7 Application run ok
– NHT
Nov 15 '18 at 18:20
If it's not confidential could you please send complete code to my email address? Here is my email address gutteraj7@gmail.com I will check and find out what is the problem.
– VikaS
Nov 15 '18 at 18:23
So sorry.This is project of my company. i can't send for you source full but I will try create small project had this error and send for you after complete. Thanks you very much
– NHT
Nov 15 '18 at 18:36
Sure I will try my best to resolve
– VikaS
Nov 15 '18 at 18:36
add a comment |
Add below line build.gradle
implementation 'com.google.android.gms:play-services-ads:17.0.0'
If you are using 17+ AdMob sdk you need to specify app id in AndroidManifest.xml file. You can find your app id in Admob App settings
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/app_id"/>
after adding above code try uninstalling the app manually and reinstall again without making any changes. Also replace your compile with implementation.
i tried as you comment above but it not working. i run it on android 5.1 Application not start and show error : "11-16 01:16:28.655 1144-1144/? E/EGL_emulation: tid 1144: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE) 11-16 01:16:28.726 1933-2191/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified." With device run android 7 Application run ok
– NHT
Nov 15 '18 at 18:20
If it's not confidential could you please send complete code to my email address? Here is my email address gutteraj7@gmail.com I will check and find out what is the problem.
– VikaS
Nov 15 '18 at 18:23
So sorry.This is project of my company. i can't send for you source full but I will try create small project had this error and send for you after complete. Thanks you very much
– NHT
Nov 15 '18 at 18:36
Sure I will try my best to resolve
– VikaS
Nov 15 '18 at 18:36
add a comment |
Add below line build.gradle
implementation 'com.google.android.gms:play-services-ads:17.0.0'
If you are using 17+ AdMob sdk you need to specify app id in AndroidManifest.xml file. You can find your app id in Admob App settings
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/app_id"/>
after adding above code try uninstalling the app manually and reinstall again without making any changes. Also replace your compile with implementation.
Add below line build.gradle
implementation 'com.google.android.gms:play-services-ads:17.0.0'
If you are using 17+ AdMob sdk you need to specify app id in AndroidManifest.xml file. You can find your app id in Admob App settings
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/app_id"/>
after adding above code try uninstalling the app manually and reinstall again without making any changes. Also replace your compile with implementation.
edited Nov 14 '18 at 19:04
answered Nov 14 '18 at 18:58
VikaSVikaS
481117
481117
i tried as you comment above but it not working. i run it on android 5.1 Application not start and show error : "11-16 01:16:28.655 1144-1144/? E/EGL_emulation: tid 1144: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE) 11-16 01:16:28.726 1933-2191/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified." With device run android 7 Application run ok
– NHT
Nov 15 '18 at 18:20
If it's not confidential could you please send complete code to my email address? Here is my email address gutteraj7@gmail.com I will check and find out what is the problem.
– VikaS
Nov 15 '18 at 18:23
So sorry.This is project of my company. i can't send for you source full but I will try create small project had this error and send for you after complete. Thanks you very much
– NHT
Nov 15 '18 at 18:36
Sure I will try my best to resolve
– VikaS
Nov 15 '18 at 18:36
add a comment |
i tried as you comment above but it not working. i run it on android 5.1 Application not start and show error : "11-16 01:16:28.655 1144-1144/? E/EGL_emulation: tid 1144: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE) 11-16 01:16:28.726 1933-2191/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified." With device run android 7 Application run ok
– NHT
Nov 15 '18 at 18:20
If it's not confidential could you please send complete code to my email address? Here is my email address gutteraj7@gmail.com I will check and find out what is the problem.
– VikaS
Nov 15 '18 at 18:23
So sorry.This is project of my company. i can't send for you source full but I will try create small project had this error and send for you after complete. Thanks you very much
– NHT
Nov 15 '18 at 18:36
Sure I will try my best to resolve
– VikaS
Nov 15 '18 at 18:36
i tried as you comment above but it not working. i run it on android 5.1 Application not start and show error : "11-16 01:16:28.655 1144-1144/? E/EGL_emulation: tid 1144: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE) 11-16 01:16:28.726 1933-2191/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified." With device run android 7 Application run ok
– NHT
Nov 15 '18 at 18:20
i tried as you comment above but it not working. i run it on android 5.1 Application not start and show error : "11-16 01:16:28.655 1144-1144/? E/EGL_emulation: tid 1144: eglCreateSyncKHR(1865): error 0x3004 (EGL_BAD_ATTRIBUTE) 11-16 01:16:28.726 1933-2191/com.google.android.gms.persistent E/NetworkScheduler: Invalid component specified." With device run android 7 Application run ok
– NHT
Nov 15 '18 at 18:20
If it's not confidential could you please send complete code to my email address? Here is my email address gutteraj7@gmail.com I will check and find out what is the problem.
– VikaS
Nov 15 '18 at 18:23
If it's not confidential could you please send complete code to my email address? Here is my email address gutteraj7@gmail.com I will check and find out what is the problem.
– VikaS
Nov 15 '18 at 18:23
So sorry.This is project of my company. i can't send for you source full but I will try create small project had this error and send for you after complete. Thanks you very much
– NHT
Nov 15 '18 at 18:36
So sorry.This is project of my company. i can't send for you source full but I will try create small project had this error and send for you after complete. Thanks you very much
– NHT
Nov 15 '18 at 18:36
Sure I will try my best to resolve
– VikaS
Nov 15 '18 at 18:36
Sure I will try my best to resolve
– VikaS
Nov 15 '18 at 18:36
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53306760%2fandroid-error-com-google-android-gms-persistent-e-networkscheduler-invalid-co%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I suugest you replace
implementionwithcompile– amir133
Nov 14 '18 at 19:01
@amir133 i tried as you comment but it not working
– NHT
Nov 15 '18 at 18:17
Three question : 1. can you build and run your project on
android 5.12. Did you have this problem on every android 5.1 device(maybe your play service is outOfDate). 3. did android studio offer some warning or error inbuild.gradleif true I suggest you solve them.– amir133
Nov 15 '18 at 18:57