Odoo-mobile / framework

Odoo Mobile Framework
https://play.google.com/store/apps/dev?id=8607973775002477408
Other
327 stars 374 forks source link

After Login Successful Crass App #364

Open opmaurya1995 opened 6 years ago

opmaurya1995 commented 6 years ago

I am try to connect my local database odoo community version 10 on mobile app, after successful login it will crashed and not open. please check attached file. screenshot from 2018-01-27 22-04-10

ghost commented 6 years ago

I am also experiencing this issue on my Samsung Galaxy S2 Tablet (JellyBean, 4.2.2)

naitikvithlani commented 6 years ago

@opmauryasarthi @lramage94 Can you please add log report of application crashed.

ghost commented 6 years ago

@naitikvithlani I have a user using the release apk included in the repository that is having issues. I am not sure how to get a log from him. Any ideas on that?

naitikvithlani commented 6 years ago

you can get full source code from git and run it in android studio, You can customise it as per your need.

ghost commented 6 years ago

@naitikvithlani yes, I did that. However, I have a user that I was trying to have demo the software and it crashed for him. I am not in the same physical location and he is not a developer, he's the end user. How would I be able to get a log from his device?

kasim1011 commented 6 years ago

@lramage94 if you've signed app without updating its dependencies then you might require to update Google Play Service dependency at build.gradle from compile 'com.google.android.gms:play-services-gcm:10.0.1' to compile 'com.google.android.gms:play-services-gcm:11.8.0' and you need add Google Maven dependency at build.gradle like this

allprojects {
    repositories {
        google()

        // If you're using a version of Gradle lower than 4.1, you must instead use:
        // maven {
        //     url 'https://maven.google.com'
        // }
        // An alternative URL is 'https://dl.google.com/dl/android/maven2/'
    }
}