Skip to content

Commit

Permalink
fixed readme identations and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
evilthreads669966 committed Sep 28, 2020
1 parent 1b1d1c4 commit 4c5b1cb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
1. Add the maven repository to your project's allprojects closure in the gradle.build file
```groovy
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
2. Add the dependency to your app's build.gradle file
```groovy
dependencies {
implementation 'com.github.evilthreads669966:evademe:-SNAPSHOT'
}
dependencies {
implementation 'com.github.evilthreads669966:evademe:-SNAPSHOT'
}
```
3. Use the evade ktx function inside of any android context.
```kotlin
evade {
Log.d("EVADE", "EVIL THREADS");
}.onEscape{
Toast.makeText(this, "We evaded with networking", Toast.LENGTH_LONG).show()
}.onSuccess {
Toast.makeText(this, "We executed the paylod with networking", Toast.LENGTH_LONG).show()
}
evade {
Log.d("EVADE", "EVIL THREADS");
}.onEscape{
Toast.makeText(this, "We evaded with networking", Toast.LENGTH_LONG).show()
}.onSuccess {
Toast.makeText(this, "We executed the paylod with networking", Toast.LENGTH_LONG).show()
}
```
Anything code inside of the evade scoping function is safe from analysis.
Any code inside of the evade scoping function is safe from analysis.
This allows you to develop malware or spyware that is not able to be tested by people.

0 comments on commit 4c5b1cb

Please sign in to comment.