• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Video Game Only Works On Pixel 3 Device

Brian Berry

Well-Known Member
I built a video game and it works perfectly on my pixel 3 phone but if I put it on any other phone such as my SamSung Galaxy S7 it crashes. I compile it at min sdk 14 and target sdk 29. I suspect its a hardware issue but I've never seen anything like it here is my gradle configuration. Can anybody spot the issue or help me make it compatible more than just my pixel 3 phone?


Code:
apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.0"
    defaultConfig {
        applicationId "com.calmchesscomputers.game1"
        minSdkVersion 14
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.core:core-ktx:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    }
 
Is it possible for you to retrieve the crash log from the device? A stack trace would provide valuable diagnostic information about the cause of the app crash.
 
Alternatively, if you connect the Samsung to your computer, and run the app directlly from Android Studio on the connected device, the stack trace should be immediately visible in the Logcat.
 
Code:
2019-06-20 08:13:24.142 26196-26196/? E/propClient: PropClient failed to load
2019-06-20 08:13:24.171 19359-19359/? E/adbd: recv: OPEN 00000315 00000000 0014:73 68 65 6C 6C 3A 6C 6F 67 63 61 74 20 2D 2D 68 65 6C 70 00
2019-06-20 08:13:24.171 19359-19359/? E/adbd: service_to_fd: shell:logcat --help
2019-06-20 08:13:24.208 26198-26198/? E/propClient: PropClient failed to load
2019-06-20 08:13:24.220 26198-26198/? E/propClient: PropClient failed to load
2019-06-20 08:13:24.242 19359-19359/? E/adbd: recv: OPEN 00000316 00000000 001e:73 68 65 6C 6C 3A 6C 6F 67 63 61 74 20 2D 76 20 6C 6F 6E 67 20 2D 76 20 65 70 6F 63 68 00
2019-06-20 08:13:24.243 19359-19359/? E/adbd: service_to_fd: shell:logcat -v long -v epoch
2019-06-20 08:13:24.272 26200-26200/? E/propClient: PropClient failed to load
2019-06-20 08:13:24.283 26200-26200/? E/propClient: PropClient failed to load
2019-06-20 08:13:27.023 1384-2573/? E/WifiGeofenceManager: setScanInterval interval : 64, maxInterval : 128
2019-06-20 08:13:27.108 6829-6978/? E/BtGatt.GattService: [GSIM LOG]: gsimLogHandler, msg: MESSAGE_SCAN_START, appName: com.google.uid.shared, scannerId: 5, reportDelayMillis=0
2019-06-20 08:13:27.140 6829-6977/? E/BtGatt.ScanManager: default value of curScanSetting 0 is choosen
2019-06-20 08:13:28.004 19359-19359/? E/adbd: recv: OPEN 00000317 00000000 0014:73 68 65 6C 6C 3A 70 6D 20 6C 69 73 74 20 75 73 65 72 73 00
2019-06-20 08:13:28.005 19359-19359/? E/adbd: service_to_fd: shell:pm list users
2019-06-20 08:13:28.030 26214-26214/? E/propClient: PropClient failed to load
2019-06-20 08:13:28.043 26214-26214/? E/propClient: PropClient failed to load
2019-06-20 08:13:28.235 19359-19359/? E/adbd: recv: OPEN 00000318 00000000 0033:73 68 65 6C 6C 3A 64 75 6D 70 73 79 73 20 70 61 63 6B 61 67 65 20 63 6F 6D 2E 63 61 6C 6D 63 68 65 73 73 63 6F 6D 70 75 74 65 72 73 2E 67 61 6D 65 31 00
2019-06-20 08:13:28.235 19359-19359/? E/adbd: service_to_fd: shell:dumpsys package com.calmchesscomputers.game1
2019-06-20 08:13:28.244 26217-26217/? E/propClient: PropClient failed to load
2019-06-20 08:13:28.266 26217-26217/? E/propClient: PropClient failed to load
2019-06-20 08:13:28.299 19359-19359/? E/adbd: recv: OPEN 00000319 00000000 0033:73 68 65 6C 6C 3A 64 75 6D 70 73 79 73 20 70 61 63 6B 61 67 65 20 63 6F 6D 2E 63 61 6C 6D 63 68 65 73 73 63 6F 6D 70 75 74 65 72 73 2E 67 61 6D 65 31 00
2019-06-20 08:13:28.299 19359-19359/? E/adbd: service_to_fd: shell:dumpsys package com.calmchesscomputers.game1
2019-06-20 08:13:28.320 26220-26220/? E/propClient: PropClient failed to load
2019-06-20 08:13:28.340 26220-26220/? E/propClient: PropClient failed to load
2019-06-20 08:13:28.365 19359-19359/? E/adbd: recv: OPEN 0000031a 00000000 0006:73 79 6E 63 3A 00
2019-06-20 08:13:28.365 19359-19359/? E/adbd: service_to_fd: sync:
2019-06-20 08:13:28.388 19359-19359/? E/adbd: recv: OPEN 0000031b 00000000 0014:73 68 65 6C 6C 3A 70 6D 20 6C 69 73 74 20 75 73 65 72 73 00
2019-06-20 08:13:28.388 19359-19359/? E/adbd: service_to_fd: shell:pm list users
2019-06-20 08:13:28.429 26224-26224/? E/propClient: PropClient failed to load
2019-06-20 08:13:28.438 26224-26224/? E/propClient: PropClient failed to load
2019-06-20 08:13:29.103 6829-6977/? E/BtGatt.ScanManager: default value of curScanSetting 0 is choosen
2019-06-20 08:13:29.105 6829-6978/? E/BtGatt.GattService: [GSIM LOG]: gsimLogHandler, msg: MESSAGE_SCAN_STOP, appName: com.google.uid.shared, scannerId: 5, reportDelayMillis=0
2019-06-20 08:13:29.283 26229-26229/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:29.285 26229-26229/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:29.285 26229-26229/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:29.399 26244-26244/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:29.401 26244-26244/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:29.401 26244-26244/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:29.648 19359-19359/? E/adbd: recv: OPEN 0000031d 00000000 0032:73 68 65 6C 6C 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 63 72 65 61 74 65 20 2D 72 20 2D 74 20 2D 53 20 38 32 36 36 39 30 33 00
2019-06-20 08:13:29.649 19359-19359/? E/adbd: service_to_fd: shell:cmd package install-create -r -t -S 8266903
2019-06-20 08:13:29.675 19359-19359/? E/adbd: recv: OPEN 0000031c 00000000 001a:73 68 65 6C 6C 3A 77 6D 20 64 69 73 6D 69 73 73 2D 6B 65 79 67 75 61 72 64 00
2019-06-20 08:13:29.675 19359-19359/? E/adbd: service_to_fd: shell:wm dismiss-keyguard
2019-06-20 08:13:29.701 26263-26263/? E/propClient: PropClient failed to load
2019-06-20 08:13:29.702 26261-26261/? E/propClient: PropClient failed to load
2019-06-20 08:13:29.712 26263-26263/? E/propClient: PropClient failed to load
2019-06-20 08:13:29.721 26261-26261/? E/propClient: PropClient failed to load
2019-06-20 08:13:29.996 26263-26263/? E/propClient: PropClient failed to load
2019-06-20 08:13:30.008 26263-26263/? E/appproc: Enhanced Zygote ASLR: ro.knox.enhance.zygote.aslr != 1. Enhanced Zygote ASLR is DISABLED!
2019-06-20 08:13:30.091 19359-19359/? E/adbd: recv: OPEN 0000031e 00000000 003e:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 30 39 33 34 20 34 38 39 31 32 33 39 32 38 20 30 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:30.092 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 10934 489123928 0_slice__ -
2019-06-20 08:13:30.104 26267-26267/? E/propClient: PropClient failed to load
2019-06-20 08:13:30.193 26263-26263/? E/SemAffinityControl: SemAffinityControl: registerfunction enter
2019-06-20 08:13:30.200 26263-26263/? E/System: Unable to open boot classpath entry: /system/framework/oem-services.jar
2019-06-20 08:13:30.201 26263-26263/? E/System: java.io.FileNotFoundException: File doesn't exist: /system/framework/oem-services.jar
        at java.util.zip.ZipFile.<init>(ZipFile.java:212)
        at java.util.zip.ZipFile.<init>(ZipFile.java:149)
        at java.util.jar.JarFile.<init>(JarFile.java:160)
        at java.util.jar.JarFile.<init>(JarFile.java:97)
        at libcore.io.ClassPathURLStreamHandler.<init>(ClassPathURLStreamHandler.java:47)
        at java.lang.VMClassLoader.createBootClassPathUrlHandlers(VMClassLoader.java:49)
        at java.lang.VMClassLoader.<clinit>(VMClassLoader.java:32)
        at java.lang.BootClassLoader.findResource(ClassLoader.java:1360)
        at java.lang.BootClassLoader.getResource(ClassLoader.java:1406)
        at java.lang.ClassLoader.getResourceAsStream(ClassLoader.java:987)
        at java.lang.Class.getResourceAsStream(Class.java:2211)
        at java.util.logging.LogManager.readConfiguration(LogManager.java:1297)
        at java.util.logging.LogManager$3.run(LogManager.java:390)
        at java.util.logging.LogManager$3.run(LogManager.java:388)
        at java.security.AccessController.doPrivileged(AccessController.java:67)
        at java.util.logging.LogManager.readPrimordialConfiguration(LogManager.java:387)
        at java.util.logging.LogManager.-wrap5(Unknown Source:0)
        at java.util.logging.LogManager$2.run(LogManager.java:336)
        at java.security.AccessController.doPrivileged(AccessController.java:41)
        at java.util.logging.LogManager.ensureLogManagerInitialized(LogManager.java:329)
        at java.util.logging.LogManager.getLogManager(LogManager.java:369)
        at java.util.logging.Logger.demandLogger(Logger.java:449)
        at java.util.logging.Logger.getLogger(Logger.java:505)
        at android.icu.util.TimeZone.<clinit>(TimeZone.java:95)
        at java.util.TimeZone.setDefault(TimeZone.java:741)
        at com.android.internal.os.RuntimeInit.commonInit(RuntimeInit.java:157)
        at com.android.internal.os.RuntimeInit.main(RuntimeInit.java:281)
2019-06-20 08:13:30.283 19359-19359/? E/adbd: recv: OPEN 0000031f 00000000 003e:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 33 36 31 30 20 34 38 39 31 32 33 39 32 38 20 31 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:30.283 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 13610 489123928 1_slice__ -
2019-06-20 08:13:30.301 26279-26279/? E/propClient: PropClient failed to load
2019-06-20 08:13:30.476 19359-19359/? E/adbd: recv: OPEN 00000320 00000000 003e:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 33 31 39 34 35 20 34 38 39 31 32 33 39 32 38 20 32 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:30.477 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 31945 489123928 2_slice__ -
2019-06-20 08:13:30.488 26283-26283/? E/propClient: PropClient failed to load
2019-06-20 08:13:30.675 19359-19359/? E/adbd: recv: OPEN 00000321 00000000 003e:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 30 34 34 31 20 34 38 39 31 32 33 39 32 38 20 33 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:30.675 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 10441 489123928 3_slice__ -
2019-06-20 08:13:30.686 26287-26287/? E/propClient: PropClient failed to load
2019-06-20 08:13:30.867 19359-19359/? E/adbd: recv: OPEN 00000322 00000000 003e:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 30 35 34 35 20 34 38 39 31 32 33 39 32 38 20 34 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:30.867 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 10545 489123928 4_slice__ -
2019-06-20 08:13:30.878 26291-26291/? E/propClient: PropClient failed to load
2019-06-20 08:13:31.060 19359-19359/? E/adbd: recv: OPEN 00000323 00000000 003d:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 36 39 37 33 20 34 38 39 31 32 33 39 32 38 20 35 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:31.060 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 6973 489123928 5_slice__ -
2019-06-20 08:13:31.092 26295-26295/? E/propClient: PropClient failed to load
2019-06-20 08:13:31.261 19359-19359/? E/adbd: recv: OPEN 00000324 00000000 0048:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 36 32 37 38 31 38 39 20 34 38 39 31 32 33 39 32 38 20 36 5F 72 65 73 6F 75 72 63 65 73 2D 64 65 62 75 67 20 2D 00
2019-06-20 08:13:31.262 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 6278189 489123928 6_resources-debug -
2019-06-20 08:13:31.292 26299-26299/? E/propClient: PropClient failed to load
2019-06-20 08:13:32.012 19359-19359/? E/adbd: recv: OPEN 00000325 00000000 003e:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 30 34 38 39 20 34 38 39 31 32 33 39 32 38 20 37 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:32.012 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 10489 489123928 7_slice__ -
2019-06-20 08:13:32.050 26303-26303/? E/propClient: PropClient failed to load
2019-06-20 08:13:32.234 19359-19359/? E/adbd: recv: OPEN 00000326 00000000 0045:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 35 38 36 35 36 31 20 34 38 39 31 32 33 39 32 38 20 38 5F 64 65 70 65 6E 64 65 6E 63 69 65 73 20 2D 00
2019-06-20 08:13:32.234 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 1586561 489123928 8_dependencies -
2019-06-20 08:13:32.244 26307-26307/? E/propClient: PropClient failed to load
2019-06-20 08:13:32.603 19359-19359/? E/adbd: recv: OPEN 00000327 00000000 003e:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 30 38 38 39 20 34 38 39 31 32 33 39 32 38 20 39 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:32.603 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 10889 489123928 9_slice__ -
2019-06-20 08:13:32.630 26311-26311/? E/propClient: PropClient failed to load
2019-06-20 08:13:32.821 19359-19359/? E/adbd: recv: OPEN 00000328 00000000 003f:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 37 31 38 35 35 20 34 38 39 31 32 33 39 32 38 20 31 30 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:32.822 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 71855 489123928 10_slice__ -
2019-06-20 08:13:32.851 26315-26315/? E/propClient: PropClient failed to load
2019-06-20 08:13:33.038 19359-19359/? E/adbd: recv: OPEN 00000329 00000000 003f:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 31 34 30 32 35 20 34 38 39 31 32 33 39 32 38 20 31 31 5F 73 6C 69 63 65 5F 5F 20 2D 00
2019-06-20 08:13:33.038 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 14025 489123928 11_slice__ -
2019-06-20 08:13:33.053 26319-26319/? E/propClient: PropClient failed to load
2019-06-20 08:13:33.226 19359-19359/? E/adbd: recv: OPEN 0000032a 00000000 0042:65 78 65 63 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 77 72 69 74 65 20 2D 53 20 32 31 30 34 34 37 20 34 38 39 31 32 33 39 32 38 20 31 32 5F 61 70 70 2D 64 65 62 75 67 20 2D 00
2019-06-20 08:13:33.226 19359-19359/? E/adbd: service_to_fd: exec:cmd package install-write -S 210447 489123928 12_app-debug -
2019-06-20 08:13:33.238 26323-26323/? E/propClient: PropClient failed to load
2019-06-20 08:13:33.464 19359-19359/? E/adbd: recv: OPEN 0000032b 00000000 002b:73 68 65 6C 6C 3A 63 6D 64 20 70 61 63 6B 61 67 65 20 69 6E 73 74 61 6C 6C 2D 63 6F 6D 6D 69 74 20 34 38 39 31 32 33 39 32 38 00
2019-06-20 08:13:33.464 19359-19359/? E/adbd: service_to_fd: shell:cmd package install-commit 489123928
2019-06-20 08:13:33.505 26327-26327/? E/propClient: PropClient failed to load
2019-06-20 08:13:33.524 26327-26327/? E/propClient: PropClient failed to load
2019-06-20 08:13:34.038 26229-26332/? E/GOS:SeDex: failed to getSystemService()
2019-06-20 08:13:34.039 26229-26332/? E/GOS:SeDex: failed to getSystemService()
2019-06-20 08:13:34.146 26335-26335/? E/propClient: PropClient failed to load
2019-06-20 08:13:34.786 1384-1631/? E/ViewRootImpl: sendUserActionEvent() returned.
2019-06-20 08:13:34.998 26342-26342/? E/propClient: PropClient failed to load
2019-06-20 08:13:35.730 1037-30475/? E/installd: Failed to delete /data/app/vmdl489123928.tmp: No such file or directory
2019-06-20 08:13:35.778 4439-4439/? E/VzwEABService: onPackageRemoved: invalid package
2019-06-20 08:13:35.782 19359-19359/? E/adbd: recv: OPEN 0000032c 00000000 0006:73 79 6E 63 3A 00
2019-06-20 08:13:35.782 19359-19359/? E/adbd: service_to_fd: sync:
2019-06-20 08:13:35.846 19359-19359/? E/adbd: recv: OPEN 0000032d 00000000 009d:73 68 65 6C 6C 3A 61 6D 20 73 74 61 72 74 20 2D 6E 20 22 63 6F 6D 2E 63 61 6C 6D 63 68 65 73 73 63 6F 6D 70 75 74 65 72 73 2E 67 61 6D 65 31 2F 63 6F 6D 2E 63 61 6C 6D 63 68 65 73 73 63 6F 6D 70 75 74 65 72 73 2E 67 61 6D 65 31 2E 4D 61 69 6E 41 63 74 69 76 69 74 79 22 20 2D 61 20 61 6E 64 72 6F 69 64 2E 69 6E 74 65 6E 74 2E 61 63 74 69 6F 6E 2E 4D 41 49 4E 20 2D 63 20 61 6E 64 72 6F 69 64 2E 69 6E 74 65 6E 74 2E 63 61 74 65 67 6F 72 79 2E 4C 41 55 4E 43 48 45 52 00
2019-06-20 08:13:35.846 19359-19359/? E/adbd: service_to_fd: shell:am start -n "com.calmchesscomputers.game1/com.calmchesscomputers.game1.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
2019-06-20 08:13:35.869 26354-26354/? E/propClient: PropClient failed to load
2019-06-20 08:13:35.893 26350-26350/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:35.897 26350-26350/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:35.897 26350-26350/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:35.898 26358-26358/? E/propClient: PropClient failed to load
2019-06-20 08:13:35.909 26359-26359/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:35.911 26359-26359/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:35.911 26359-26359/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:35.923 1384-1384/? E/SDAgentPackageStateReceiver: Not going to handle 'com.calmchesscomputers.game1'!
2019-06-20 08:13:35.951 26364-26364/? E/propClient: PropClient failed to load
2019-06-20 08:13:35.996 26386-26386/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:36.007 26386-26386/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:36.007 26386-26386/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:36.028 1384-4469/? E/ActivityManager: getPackageFromAppProcesses, return null :26364
2019-06-20 08:13:36.076 738-784/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
2019-06-20 08:13:36.078 1384-4469/? E/ANDR-PERF-JNI: com_qualcomm_qtiperformance_native_perf_io_prefetch_start
2019-06-20 08:13:36.078 1384-4469/? E/ANDR-PERF-JNI: gIOPHAl initialized
2019-06-20 08:13:36.126 4760-4960/? E/ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 0Kb duration : 9ms lastUpdatedAfter : 51390 ms mFlush_time_threasold : 2000 mCurrentSize : 231
2019-06-20 08:13:36.147 26403-26403/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:36.149 26403-26403/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:36.149 26403-26403/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:36.256 19359-19359/? E/adbd: recv: OPEN 0000032e 00000000 000b:6A 64 77 70 3A 32 36 34 30 33 00
2019-06-20 08:13:36.256 19359-19359/? E/adbd: service_to_fd: jdwp:26403
2019-06-20 08:13:36.315 1384-1384/? E/SDAgentPackageStateReceiver: Not going to handle 'com.calmchesscomputers.game1'!
2019-06-20 08:13:36.340 26426-26426/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:36.341 26426-26426/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:36.341 26426-26426/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:36.982 26469-26469/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:36.989 26469-26469/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:36.989 26469-26469/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:37.177 26491-26491/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:37.178 26491-26491/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:37.178 26491-26491/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:37.432 26509-26509/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:37.434 26509-26509/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:37.434 26509-26509/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:37.591 26528-26528/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:37.592 26528-26528/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:37.592 26528-26528/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:37.683 26543-26543/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:37.685 26543-26543/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:37.685 26543-26543/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:37.783 2894-2894/? E/wpa_supplicant: nl80211: Failed to open /proc/sys/net/ipv4/conf/wlan0/drop_unicast_in_l2_multicast: No such file or directory
2019-06-20 08:13:37.783 2894-2894/? E/wpa_supplicant: nl80211: Failed to set IPv4 unicast in multicast filter
2019-06-20 08:13:37.820 26558-26558/? E/propClient: PropClient failed to load
2019-06-20 08:13:37.846 26562-26562/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:37.847 26562-26562/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:37.847 26562-26562/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:37.982 735-735/? E/WifiHAL: Failed to register get pkt fate response; result = -95
2019-06-20 08:13:37.992 1384-2573/? E/WifiVendorHal: getTxPktFates(l.1933) failed {.code = ERROR_UNKNOWN, .description = errno: -95 (Unknown error -95)}
2019-06-20 08:13:37.993 735-735/? E/WifiHAL: Failed to register get pkt fate response; result = -95
2019-06-20 08:13:38.002 1384-2573/? E/WifiVendorHal: getRxPktFates(l.1973) failed {.code = ERROR_UNKNOWN, .description = errno: -95 (Unknown error -95)}
2019-06-20 08:13:38.044 26403-26403/com.calmchesscomputers.game1 E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.calmchesscomputers.game1, PID: 26403
    java.lang.RuntimeException: Canvas: trying to draw too large(149299200bytes) bitmap.
        at android.view.DisplayListCanvas.throwIfCannotDraw(DisplayListCanvas.java:229)
        at android.view.RecordingCanvas.drawBitmap(RecordingCanvas.java:97)
        at android.graphics.drawable.BitmapDrawable.draw(BitmapDrawable.java:529)
        at android.view.View.getDrawableRenderNode(View.java:20645)
        at android.view.View.drawBackground(View.java:20581)
        at android.view.View.draw(View.java:20361)
        at android.view.View.updateDisplayListIfDirty(View.java:19315)
        at android.view.View.draw(View.java:20093)
        at android.view.ViewGroup.drawChild(ViewGroup.java:4421)
        at android.view.ViewGroup.dispatchDraw(ViewGroup.java:4207)
        at android.view.View.updateDisplayListIfDirty(View.java:19306)
        at android.view.View.draw(View.java:20093)
        at android.view.ViewGroup.drawChild(ViewGroup.java:4421)
        at android.view.ViewGroup.dispatchDraw(ViewGroup.java:4207)
        at android.view.View.updateDisplayListIfDirty(View.java:19306)
        at android.view.View.draw(View.java:20093)
        at android.view.ViewGroup.drawChild(ViewGroup.java:4421)
        at android.view.ViewGroup.dispatchDraw(ViewGroup.java:4207)
        at android.view.View.updateDisplayListIfDirty(View.java:19306)
        at android.view.View.draw(View.java:20093)
        at android.view.ViewGroup.drawChild(ViewGroup.java:4421)
        at android.view.ViewGroup.dispatchDraw(ViewGroup.java:4207)
        at android.view.View.updateDisplayListIfDirty(View.java:19306)
        at android.view.View.draw(View.java:20093)
        at android.view.ViewGroup.drawChild(ViewGroup.java:4421)
        at android.view.ViewGroup.dispatchDraw(ViewGroup.java:4207)
        at android.view.View.draw(View.java:20373)
        at com.android.internal.policy.DecorView.draw(DecorView.java:980)
        at android.view.View.updateDisplayListIfDirty(View.java:19315)
        at android.view.ThreadedRenderer.updateViewTreeDisplayList(ThreadedRenderer.java:686)
        at android.view.ThreadedRenderer.updateRootDisplayList(ThreadedRenderer.java:692)
        at android.view.ThreadedRenderer.draw(ThreadedRenderer.java:800)
        at android.view.ViewRootImpl.draw(ViewRootImpl.java:3496)
        at android.view.ViewRootImpl.performDraw(ViewRootImpl.java:3283)
        at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2818)
        at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1780)
        at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:7827)
        at android.view.Choreographer$CallbackRecord.run(Choreographer.java:911)
        at android.view.Choreographer.doCallbacks(Choreographer.java:723)
        at android.view.Choreographer.doFrame(Choreographer.java:658)
        at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:897)
        at android.os.Handler.handleCallback(Handler.java:789)
        at android.os.Handler.dispatchMessage(Handler.java:98)
        at android.os.Looper.loop(Looper.java:164)
        at android.app.ActivityThread.main(ActivityThread.java:6944)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)
2019-06-20 08:13:38.061 738-784/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
2019-06-20 08:13:38.103 26083-26083/? E/WindowManager: android.view.WindowLeaked: Activity com.samsung.android.MtpApplication.USBConnection has leaked window DecorView@345dfd4[] that was originally added here
        at android.view.ViewRootImpl.<init>(ViewRootImpl.java:615)
        at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:365)
        at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:100)
        at android.app.Dialog.show(Dialog.java:420)
        at com.samsung.android.MtpApplication.USBConnection.showDiaglog(USBConnection.java:335)
        at com.samsung.android.MtpApplication.USBConnection.onCreate(USBConnection.java:71)
        at android.app.Activity.performCreate(Activity.java:7183)
        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1220)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2910)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3032)
        at android.app.ActivityThread.-wrap11(Unknown Source:0)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1696)
        at android.os.Handler.dispatchMessage(Handler.java:105)
        at android.os.Looper.loop(Looper.java:164)
        at android.app.ActivityThread.main(ActivityThread.java:6944)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)
2019-06-20 08:13:38.141 1384-1631/? E/PhoneWindow_APM :: isCalledPackage return false
2019-06-20 08:13:38.310 26594-26594/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:38.312 26594-26594/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:38.312 26594-26594/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:38.333 26599-26599/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:38.336 26599-26599/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:38.336 26599-26599/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:38.344 5078-5078/? E/SPPClientService: [[PushClientService]] reqType : 1
2019-06-20 08:13:38.345 5078-5078/? E/SPPClientService: [d] [REGISTRATION] Network is not available.
2019-06-20 08:13:38.588 26634-26634/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:38.590 26634-26634/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:38.590 26634-26634/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:38.595 738-784/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
2019-06-20 08:13:38.868 7716-7809/? E/PBSessionCacheImpl: sessionId[33936887877679916] not persisted.
2019-06-20 08:13:38.901 26656-26656/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:38.903 26656-26656/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:38.903 26656-26656/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:39.019 738-784/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
2019-06-20 08:13:39.025 738-784/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
2019-06-20 08:13:39.081 26678-26678/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:39.082 26678-26678/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:39.082 26678-26678/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:39.163 5078-5078/? E/SPPClientService: [PackageInfoChangeReceiver] android.intent.action.PACKAGE_REMOVED
2019-06-20 08:13:39.164 5078-5078/? E/SPPClientService: [PackageInfoChangeReceiver] [handlePkgRemovedEvent] PackageName : com.calmchesscomputers.game1, true, false
2019-06-20 08:13:39.164 5078-5078/? E/SPPClientService: [PackageInfoChangeReceiver] [handlePkgRemovedEvent] Ignore Replacing case
2019-06-20 08:13:39.193 26694-26694/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:39.195 26694-26694/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:39.195 26694-26694/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:39.326 26713-26713/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:39.328 26713-26713/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:39.328 26713-26713/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:39.347 1384-2901/? E/Watchdog: !@Sync 1276 [2019-06-20 08:13:39.347]
2019-06-20 08:13:39.411 26713-26728/? E/AASAservice-TokenRule: parseToken() : TokenFile is null
2019-06-20 08:13:39.412 1384-4498/? E/AASATokenParser: set xml file does not exist
2019-06-20 08:13:39.422 26713-26728/? E/AASAservice-IntentThread: AASAIntentThread : myrule is null.
2019-06-20 08:13:39.472 26729-26729/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:39.473 26729-26729/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:39.473 26729-26729/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:39.615 26745-26745/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:39.616 26745-26745/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:39.616 26745-26745/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:39.828 24604-26768/? E/MShopAppstore.NotificationService: Unhandled notification type: Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.calmchesscomputers.game1 flg=0x4000010 cmp=com.amazon.mShop.android/com.amazon.venezia.notification.NotificationService (has extras) }
2019-06-20 08:13:40.041 26782-26782/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:40.042 26782-26782/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:40.042 26782-26782/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
2019-06-20 08:13:40.126 26782-26782/? E/libc: Access denied finding property "ro.serialno"
2019-06-20 08:13:40.127 994-994/? E/audit: type=1400 audit(1561036420.113:436): avc:  denied  { read } for  pid=26782 comm="ndroid.calendar" name="u:eek:bject_r:serialno_prop:s0" dev="tmpfs" ino=15195 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:eek:bject_r:serialno_prop:s0 tclass=file permissive=0 SEPF_SM-G935V_8.0.0_0016 audit_filtered
2019-06-20 08:13:40.127 994-994/? E/audit: type=1300 audit(1561036420.113:436): arch=c00000b7 syscall=56 success=no exit=-13 a0=ffffff9c a1=7ffaf4bbd8 a2=88000 a3=0 items=0 ppid=1012 pid=26782 auid=4294967295 uid=10181 gid=10181 euid=10181 suid=10181 fsuid=10181 egid=10181 sgid=10181 fsgid=10181 tty=(none) ses=4294967295 comm="ndroid.calendar" exe="/system/bin/app_process64" subj=u:r:platform_app:s0:c512,c768 key=(null)
2019-06-20 08:13:40.127 994-994/? E/audit: type=1327 audit(1561036420.113:436): proctitle="com.samsung.android.calendar"
2019-06-20 08:13:40.128 4760-4960/? E/ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 1Kb duration : 2ms lastUpdatedAfter : 4002 ms mFlush_time_threasold : 2000 mCurrentSize : 690
2019-06-20 08:13:42.491 1384-10631/? E/PersistentDataBlockService: uid 1001 not allowed to access PST
2019-06-20 08:13:42.499 1384-10631/? E/PersistentDataBlockService: uid 1001 not allowed to access PST
2019-06-20 08:13:44.147 4760-4960/? E/ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 1Kb duration : 3ms lastUpdatedAfter : 4019 ms mFlush_time_threasold : 2000 mCurrentSize : 673
2019-06-20 08:13:45.146 26816-26816/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2019-06-20 08:13:45.150 26816-26816/? E/libpersona: scanKnoxPersonas
2019-06-20 08:13:45.150 26816-26816/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
 
Last edited by a moderator:
It's a runtime error.......there aren't any apparent errors in Logcat. I don't read the stack trace very well anything you can spot would be greatly appreciated.
 
I did a Google pre launch report it works on 14 devices and crashed on 2 one was an out of memory error and 1 was bitmap too large....do I just have to put up with it crashing on some devices or is there something I can do to make it work on all devices?
 
Screen shot crash report
 

Attachments

  • Screenshot_20190620-090017.png
    Screenshot_20190620-090017.png
    467.9 KB · Views: 1,114
I figured this out I had to set the min and max widths on my constraint layout and set the aspect ratios of all my screen objects/images. Then it worked on other devices. As far as the memory problem goes there is nothing I can do about that if my users have a phone with minimal ram installed. .......thanks for the focus session guys. Make sure you use the play stores analytics stuff.....highly useful to figure out run time errors!
 
The relevant part of the stack trace, and what caused the fatal exception is

2019-06-20 08:13:38.044 26403-26403/com.calmchesscomputers.game1 E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.calmchesscomputers.game1, PID: 26403
java.lang.RuntimeException: Canvas: trying to draw too large(149299200bytes) bitmap.

Some suggestions here about your specific problem with large bitmaps -

https://stackoverflow.com/questions/40835514/android-studio-canvas-drawing-too-large-bitmap
 
Back
Top Bottom