Skip to content

Commit

Permalink
update readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
iabdelgawaad committed May 29, 2019
1 parent 59de6e0 commit a75f213
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Just add Zoomx NetworkLogInterceptor:
```java
OkHttpClient.Builder httpClient = new OkHttpClient
.Builder()
.addInterceptor(new NetworkLogInterceptor(this.context));
.addInterceptor(new ZoomXLoggerInterceptor(this.context));
```

# Volley or any request method
Expand Down Expand Up @@ -69,11 +69,12 @@ For example:
- Copy any response/requests and share it via any app ex. (email).
- Display request details in a pretty format.

# Upcoming Features
# Upcoming Features
- Take screenshot
- Group requests per page.
- Memory leaks report per page and whole app.
- Control internet speed.
- Shake to change working environment.
- Badge title (To indicate user to on which environment you are connected production, staging,...).
- Crashes report.
- Crashes report.

12 changes: 12 additions & 0 deletions app/src/main/java/com/zoomx/example/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import com.zoomx.example.model.User;
import com.zoomx.example.retrofit.ApiService;
import com.zoomx.example.retrofit.NetworkManager;
import com.zoomx.zoomx.config.ZoomX;

import java.util.List;
import java.util.concurrent.TimeUnit;
Expand Down Expand Up @@ -55,4 +56,15 @@ public void onComplete() {
}
});
}

@Override
protected void onPause() {
super.onPause();
ZoomX.hideHead();
}

@Override
protected void onResume() {
super.onResume();
}
}

0 comments on commit a75f213

Please sign in to comment.