Hello, I have installed EU Clover APKs on Samsung Tablet. Though I am entering correct credentials, it is giving error. Is there anything we need to do for installing EU-dev environment? Any changes in settings database?
Hello, I have installed EU Clover APKs on Samsung Tablet. Though I am entering correct credentials, it is giving error. Is there anything we need to do for installing EU-dev environment? Any changes in settings database?
Hi. Not sure I can help much but it might be worth giving more details about the error in case it means something to the clover team.
Is the error occurring when you go to log in as a Merchant? If so, it might just need to be pointed towards the right environment.
Might be worth trying this (without the UPDATE/INSERT parts if you're unsure):
//Open a shell
adb shell
//Connect to database
sqlite3 -header –line /data/data/com.android.providers.settings/databases/settings.db
//Read the table
SELECT * FROM secure;
//If the clover target exists:
UPDATE secure SET value='prodeu' where name like 'clovertarget';
(Use: CTRL+Z to exit sqlite)
pm clear com.clover.engine
//If it does not exist:
INSERT INTO secure (name,value) VALUES ('clovertarget', 'prodeu');
(Use: CTRL+Z to exit sqlite)
pm clear com.clover.engine
Once fix is applied, try again.
By the way, don't copy and paste that code... devask does this annoying thing where underscores convert text to italics. The name and value are:
clover_target and prod_eu
FYI, the target_new_environment script has been fixed to work with targeting EU. https://github.com/clover/clover-android-sdk
2 People are following this question.