Skip to content

Commit 7fbc930

Browse files
authored
Merge pull request #7 from EXXETA/develop
Update example app & Readme
2 parents e371e1b + 7d8f8fc commit 7fbc930

File tree

2 files changed

+33
-5
lines changed

2 files changed

+33
-5
lines changed

README.md

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Mobile Security Toolkit
22

3+
![License](https://img.shields.io/github/license/EXXETA/Android-Security-Toolkit.svg?style=flat-square)
4+
![Release](https://img.shields.io/github/release/EXXETA/Android-Security-Toolkit.svg?style=flat-square)
5+
![Jitpack Release](https://jitpack.io/v/EXXETA/Android-Security-Toolkit.svg?style=flat-square)
6+
37
<img src="./docs/1.png" width=300 alt="screenshot"/>
48

59
In a world where mobile devices hold vast amounts of personal and
@@ -17,7 +21,7 @@ Already implemented Features are:
1721
- [x] Hooks Detection
1822
- [x] Simulator Detection
1923

20-
You can see them in action with the [Example App](./app)
24+
You can see them in action with the [Example App](./example)
2125
we've provided
2226

2327
## Installation
@@ -27,9 +31,33 @@ Maven Central
2731

2832
### Maven Central
2933

34+
`Not Available`
35+
36+
### Jitpack
37+
38+
See [Jitpack page](https://jitpack.io/#EXXETA/Android-Security-Toolkit)
39+
40+
Setup root `build.gradle.kts`:
41+
42+
```
43+
dependencyResolutionManagement {
44+
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
45+
repositories {
46+
google()
47+
mavenCentral()
48+
maven {
49+
name = "Jitpack"
50+
url = uri("https://jitpack.io")
51+
}
52+
}
53+
}
54+
```
55+
56+
Import in project `build.gradle.kts`:
57+
3058
```
3159
dependencies {
32-
implementation 'com.exxeta:security-toolkit:1.0.0'
60+
implementation("com.exxeta:security-toolkit:1.0.1")
3361
}
3462
```
3563

@@ -85,8 +113,8 @@ See [CONTRIBUTING](./CONTRIBUTING.md)
85113

86114
Authors:
87115

88-
- Yessine Choura
89-
- Denis Dobanda
116+
- [Yessine Choura](https://github.com/ychoura)
117+
- [Denis Dobanda](https://github.com/theDeniZ)
90118

91119
Special Thanks:
92120

example/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ android {
4242
compose = true
4343
}
4444
composeOptions {
45-
kotlinCompilerExtensionVersion = "1.5.1"
45+
kotlinCompilerExtensionVersion = "1.5.13"
4646
}
4747
packaging {
4848
resources {

0 commit comments

Comments
 (0)