35 lines
1.0 KiB
Java
35 lines
1.0 KiB
Java
|
|
package com.seteclabs.drivermanager.manager;
|
||
|
|
|
||
|
|
import android.content.ContentProvider;
|
||
|
|
import android.content.ContentValues;
|
||
|
|
import android.database.Cursor;
|
||
|
|
import android.net.Uri;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Placeholder ContentProvider for future config sharing.
|
||
|
|
* Currently the Xposed hook reads config files directly from
|
||
|
|
* /data/local/tmp/driver-manager/scopes/ (set up by root).
|
||
|
|
*/
|
||
|
|
public class ConfigProvider extends ContentProvider {
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public boolean onCreate() { return true; }
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public Cursor query(Uri uri, String[] projection, String selection,
|
||
|
|
String[] selectionArgs, String sortOrder) { return null; }
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String getType(Uri uri) { return null; }
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public Uri insert(Uri uri, ContentValues values) { return null; }
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public int delete(Uri uri, String selection, String[] selectionArgs) { return 0; }
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public int update(Uri uri, ContentValues values, String selection,
|
||
|
|
String[] selectionArgs) { return 0; }
|
||
|
|
}
|