WIP. work in progress, I'm writing this post to help others interested in Android Security :) enjoy!
Good read:
http://strazzere.com/papers/AAP-QPSI.pdf
Pretty cool tool to find potential security vulnerabilities :)
http://android-arsenal.com/details/1/2769
other: http://android-arsenal.com/details/1/3046
Android Security Code:
https://www.airpair.com/android/posts/adding-tampering-detection-to-your-android-app
https://manifestsecurity.com/android-application-security-part-21/
Android Code:
http://www.codota.com/android/methods/android.widget.ImageView/setVisibility
Must Watch videos:
https://www.youtube.com/watch?v=18tn_mF4XRg&feature=youtu.be
**Hacking Android eBook (good info)
https://library.oreilly.com/book/9781785883149/hacking-android/toc
Wednesday, January 27, 2016
Thursday, January 7, 2016
SharedPreferences in Android [ put string and get string ]
PUT
GET
private SharedPreferences sharedPreferences;
sharedPreferences.edit() .putString("KEY_NAME", name) .apply();
GET
String NameURL= getPref("KEY_NAME", getContext());
public static String getPref(String key, Context context) { SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
return preferences.getString(key, null);
Subscribe to:
Posts (Atom)