Driver Manager v2.0.0 - LSPosed module for per-app driver management
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user