Skip to content

Commit

Permalink
- Added Non-fatal exception reporting callback
Browse files Browse the repository at this point in the history
- Refactored code
- Fixed init error on first install
  • Loading branch information
umair13adil committed May 28, 2021
1 parent 04a304d commit a92004a
Show file tree
Hide file tree
Showing 18 changed files with 484 additions and 237 deletions.
134 changes: 109 additions & 25 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 6 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,16 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 29
compileSdkVersion 30
defaultConfig {
applicationId "com.blackbox.library.plog"
minSdkVersion 16
targetSdkVersion 29
versionCode 32
versionName "1.0.14"
targetSdkVersion 30
versionCode 33
versionName "1.0.15"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
Expand All @@ -38,8 +34,8 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'

//RxJav2
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
Expand Down
4 changes: 0 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

<uses-permission android:name="android.permission.INTERNET" />

<!--Required for local storage logging-->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
android:name=".MainApplication"
android:allowBackup="true"
Expand Down
Loading

0 comments on commit a92004a

Please sign in to comment.