ProbeTools displays the data from the Database and SharedPreferences in the browser. Compatible with many ORM
- Viewing SharedPreferences.
- Add new variables and change the old variables in SharedPreferences.
- Upload database.
- Viewing tables.
- Create sql request.
- Interception last http request and response (work with OkHttp3)
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
compile 'com.github.pavel163.ProbeTools:probetools:2.0.0'
public class MyApplication extends Application {
public void onCreate() {
super.onCreate();
if (BuildConfig.DEBUG){
Probetools.init(this);
}
}
}
To work with the database you need:
Probetools.putDatabase(DB_NAME, DB_VERSION);
A few databases:
Probetools.putDatabase(DB_NAME_1, DB_VERSION_1);
Probetools.putDatabase(DB_NAME_2, DB_VERSION_2);
The default referenceManager.getDefaultSharedPreferences(context)
For replacement use:
Probetools.setPreferences(getSharedPreferences("pref", MODE_PRIVATE));
Add to your app module build.gradle
:
compile 'com.github.pavel163.ProbeTools:probetools-http:2.0.0'
and
OkHttpClient.Builder builder = new OkHttpClient.Builder();
builder.addInterceptor(new ProbeHttpInterceptor());
OkHttpClient client = builder.build();
Open the browser and go to ip address in notification
Copyright 2016 Ergashev Bakht.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.