summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2018-06-11 17:27:25 -0400
committerGitHub <noreply@github.com>2018-06-11 17:27:25 -0400
commit3001ffeae28c468a48cc8a890a3bb0480f9b7172 (patch)
treebb29633060f0c5c0a2ed385a9a7cd3dab1f16130
parent61d6fecbbaeec9627a35e3c93ad3e8a8fd9ae5a8 (diff)
parent3d161ed55e2bb6dbe722d4c9228e582fec5dd829 (diff)
downloadsdl_android-3001ffeae28c468a48cc8a890a3bb0480f9b7172.tar.gz
Merge pull request #789 from smartdevicelink/hotfix/readme_proguard
Adding Proguard section to README
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index fce3142b8..74b1694a9 100644
--- a/README.md
+++ b/README.md
@@ -46,3 +46,12 @@ For Maven or Ivy snippets please look at [Bintray](https://bintray.com/smartdevi
#### Manually
If you prefer not to use any of the aforementioned dependency managers, you can integrate SDL Android into your project manually.
+
+### Proguard Rules
+
+Developers using Proguard to shrink and obfuscate their code should be sure to include the following lines in their proguard-rules.pro file:
+
+```
+-keep class com.smartdevicelink.** { *; }
+-keep class com.livio.** { *; }
+``` \ No newline at end of file