rewrite README
authorRalf Jung <post@ralfj.de>
Sun, 7 Feb 2016 20:01:55 +0000 (21:01 +0100)
committerRalf Jung <post@ralfj.de>
Sun, 7 Feb 2016 20:01:55 +0000 (21:01 +0100)
README.md
app/build.gradle

index 583c62c2fd3a5c02bebe1da967a84b6f853d7a0d..b9105fa9805d7a12fc0a309165a6638198d58af6 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,13 +1,21 @@
-Network Monitored Blocker
-=========================
+noFUDroid
+=========
 
 
-Simple [Xposed Module](http://repo.xposed.info/module/it.skarafaz.xposed.nwmonblocker) which gets rid of the annoying *Network may be monitored* warning 
+> Fear, uncertainty, and doubt (often shortened to FUD) is a disinformation strategy used in sales, marketing, public relations, politics and propaganda. FUD is generally a strategy to influence perception by disseminating negative and dubious or false information and a manifestation of the appeal to fear.
+
+-- [Wikipedia on Fear, uncertainty and doubt](https://en.wikipedia.org/wiki/Fear,_uncertainty_and_doubt)
+
+This is asimple Xposed Module which gets rid of the annoying *Network may be monitored* warning 
 triggered by adding a CA cert to the key store.
 triggered by adding a CA cert to the key store.
+It is a fork of the original [NetworkMonitoredBlocker](https://github.com/Skarafaz/NetworkMonitoredBlocker) that also supports newer versions of Android.
+
 
 
-## Notes:
-* Notification removed.
-* Quick settings tile removed.
-* Warning icon next to *Security* settings menu removed.
+## Building:
 
 
-## Requirements:
-* Xposed Framework v54+.
+You will need version 54 or later of the Xposed Framework.
+Put the `XposedBridgeApi.jar` into the folder `app/libs/`.
+Then run `gradle assemble`.
+You may have to create a file `local.properties` to tell gradle where the Android build tools are located, with content like this:
+```
+sdk.dir=/path/to/android-sdk
+```
index 403b303c42582e761476ef000f747337f3f59b4c..daffd3330b6dfd98aa4f7d78c136eca8402859bd 100644 (file)
@@ -21,5 +21,5 @@ android {
 }
 
 dependencies {
 }
 
 dependencies {
-    provided files('libs/XposedBridgeApi-54.jar')
+    provided files('libs/XposedBridgeApi.jar')
 }
 }