Skip to content

Commit

Permalink
Merge pull request #2 from evilthreads669966/feature_refactor_readme_…
Browse files Browse the repository at this point in the history
…indentations_and_typos

fixed readme identations and typos
  • Loading branch information
evilthreads669966 authored Sep 28, 2020
2 parents 1b1d1c4 + 4c5b1cb commit 3c50047
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 3c50047

Please sign in to comment.