disable localized collators in ApnDB
// FREEBIE
This commit is contained in:
parent
567224b4a6
commit
a0842f329f
1 changed files with 2 additions and 1 deletions
|
@ -87,7 +87,8 @@ public class ApnDatabase {
|
|||
new FileOutputStream(dbFile));
|
||||
|
||||
this.db = SQLiteDatabase.openDatabase(context.getDatabasePath(DATABASE_NAME).getPath(),
|
||||
null, SQLiteDatabase.OPEN_READONLY);
|
||||
null,
|
||||
SQLiteDatabase.OPEN_READONLY | SQLiteDatabase.NO_LOCALIZED_COLLATORS);
|
||||
}
|
||||
|
||||
public MmsCommunication.MmsConnectionParameters getMmsConnectionParameters(final String mccmnc,
|
||||
|
|
Loading…
Add table
Reference in a new issue