Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mklkj committed May 20, 2020
1 parent c33b658 commit 33e8529
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 22 deletions.
16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

[![Join the chat at https://gitter.im/AppKillerManager](https://badges.gitter.im/AppKillerManager.svg)](https://gitter.im/AppKillerManager?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Apache 2.0 License](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0.html)
[ ![Download](https://api.bintray.com/packages/thomas-goureau/maven/AppKillerManager/images/download.svg) ](https://bintray.com/thomas-goureau/maven/AppKillerManager/_latestVersion)
[![Download](https://jitpack.io/v/wulkanowy/appkillermanager.svg)](https://jitpack.io/#wulkanowy/appkillermanager)
# AppKillerManager

Android library to handle App killer manager, agressive power saving mode or battery optimization (Xiaomi, Huawei, letv, ...) and prevent from : not showing notification, services not start at boot, etc
Expand Down Expand Up @@ -46,23 +45,14 @@ Android Custom Roms made sometimes your apps unfunctional due to :

```groovy
dependencies {
implementation 'com.thelittlefireman:AppKillerManager:2.1.1'
implementation 'io.github.wulkanowy:AppKillerManager:3.0.0'
}
```

### Step 2

Use with a custom dialog:
Use it:

<img src="IMG/screenshot_dialog.png" width="216" height="384">

```Java
public void startDialog(KillerManager.Actions actions) {
new DialogKillerManagerBuilder().setContext(this).setAction(actions).show();
}
```

Or use it directly :
```Java
// Open the corresponding Power Saving Settings
KillerManager.doActionPowerSaving(MyContext);
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.thelittlefireman.appkillermanager_exemple"
minSdkVersion 15
targetSdkVersion 29
versionCode 3
versionName "2.2.1"
versionCode 4
versionName "3.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
4 changes: 2 additions & 2 deletions appkillermanager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
minSdkVersion 15
targetSdkVersion 29

//versionCode rootProject.ext.libVersionCode
//versionName rootProject.ext.libVersionName
versionCode rootProject.ext.libVersionCode
versionName rootProject.ext.libVersionName

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,11 @@ wrapper {
}
ext{
// ValidateTor Library Info
libVersionCode = 4
libVersionName = '2.2.1'
libPomUrl = 'https://github.com/thelittlefireman/AppKillerManager'
libGithubRepo = 'thelittlefireman/AppKillerManager'
libVersionCode = 5
libVersionName = '3.0.0'
libPomUrl = 'https://github.com/wulkanowy/AppKillerManager'
libGithubRepo = 'wulkanowy/AppKillerManager'
libModuleName = 'AppKillerManager'
libModuleDesc = 'Android library to handle flaky App killer manager (Xiaomi, Huawei, letv, ...) and prevent from : not showing notification, services not start at boot, etc'
libBintrayName = 'AppKillerManager'
}

0 comments on commit 33e8529

Please sign in to comment.