ProbeTools

Additional

Language
JavaScript
Version
2.0.0 (Dec 22, 2016)
Created
Nov 1, 2016
Updated
Dec 23, 2016 (Retired)
Owner
Bakht Ergashev (pavel163)
Contributor
Bakht Ergashev (pavel163)
1
Activity
Badge
Generate
Download
Source code

ProbeTools

ProbeTools displays the data from the Database and SharedPreferences in the browser. Compatible with many ORM

Opportunities

  1. Viewing SharedPreferences.
  2. Add new variables and change the old variables in SharedPreferences.
  3. Upload database.
  4. Viewing tables.
  5. Create sql request.
  6. Interception last http request and response (work with OkHttp3)

Setup

1. To add it to your project, include the following in your project build.gradle file:

allprojects {
  repositories {
   ...
   maven { url "https://jitpack.io" }
  }
 }

2. And on your app module build.gradle:

compile 'com.github.pavel163.ProbeTools:probetools:2.0.0'

3. In your Application class:

public class MyApplication extends Application {
  public void onCreate() {
    super.onCreate();
    if (BuildConfig.DEBUG){
        Probetools.init(this);
    }
  }
}

Database

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);

SharedPreferences

The default referenceManager.getDefaultSharedPreferences(context) For replacement use:

Probetools.setPreferences(getSharedPreferences("pref", MODE_PRIVATE));

Http

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

License

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.