android Programming Glossary: engineer
How to verify that server calls are being made from the app? http://stackoverflow.com/questions/10155316/how-to-verify-that-server-calls-are-being-made-from-the-app then you've protected your credential against reverse engineering since it will be encrypted and the password will not be stored.. . If you do 1 then someone will be able to reverse engineer your client get the password get the keystore decrypt the private.. is nothing you can do to prevent this you can make reverse engineering your code harder by obfuscation etc but you cannot make it..
Is it a bad practice to use negative margins in Android? http://stackoverflow.com/questions/10673503/is-it-a-bad-practice-to-use-negative-margins-in-android improve this question In 2010 @RomainGuy core Android engineer stated that negative margins had unspecified behavior . In 2011..
Android access to remote SQL database http://stackoverflow.com/questions/10679588/android-access-to-remote-sql-database TDS data stream between the device and MSSQL and reverse engineer it and steal your data. Encryption will probably make it much..
Navigation Drawer (Google+ vs. YouTube) http://stackoverflow.com/questions/11377472/navigation-drawer-google-vs-youtube can be found here . Edit #2 Roman Nurik an Android design engineer at Google has confirmed that the recommended behavior is to..
How to avoid reverse engineering of an APK file? http://stackoverflow.com/questions/13854425/how-to-avoid-reverse-engineering-of-an-apk-file to avoid reverse engineering of an APK file I am developing a payment processing app.. can also access the source code. It's very easy to reverse engineer an Android APK file for more details see Stack Overflow question.. file for more details see Stack Overflow question Reverse engineering from an APK file to a project . I have used the Proguard..
AuthToken from AccountManager in Android Client No Longer Working http://stackoverflow.com/questions/1996686/authtoken-from-accountmanager-in-android-client-no-longer-working improve this question Got help for this from a Google engineer. Turns out my authToken was expired. I had initially gotten..
Android JSON HttpClient to send data to PHP server with HttpResponse http://stackoverflow.com/questions/2540786/android-json-httpclient-to-send-data-to-php-server-with-httpresponse here for this example JSONObject j new JSONObject j.put engineer me j.put date today j.put fuel full j.put car mine j.put distance.. an echo on _POST 'vehicle' I get the following date today engineer me Can anyone tell me where I am going wrong or if there is..
Android: out of memory exception in Gallery http://stackoverflow.com/questions/3238388/android-out-of-memory-exception-in-gallery Here's also a useful slide by Romain Guy Android Framework engineer about soft references weak references simple caches image handling..
Singletons vs. Application Context in Android? http://stackoverflow.com/questions/3826905/singletons-vs-application-context-in-android Hackborn and yes I realize she's an Android framework engineer thanks. We are bit by bit removing all singletons from our project..
Google's voice search speech recognition service http://stackoverflow.com/questions/4055830/googles-voice-search-speech-recognition-service . We've found one article where someone tried to reverse engineer the service at http waxy.org 2008 11 deconstructing_google_mobiles_voice_search_on_the_iphone..
Closing the database in a ContentProvider http://stackoverflow.com/questions/4547461/closing-the-database-in-a-contentprovider question According to Dianne Hackborn Android framework engineer there is no need to close the database in a content provider...
android compass seems unreliable http://stackoverflow.com/questions/6256256/android-compass-seems-unreliable trying to get this to work with the help of an expert DSP engineer and we have pretty much written of the android platform as useful..
Reverse Engineer Android APK to get code? [duplicate] http://stackoverflow.com/questions/6260178/reverse-engineer-android-apk-to-get-code source code from an APK file Is it possible to reverse engineer a APK file to get the actual code Please advice. Thank you...
How to disable the Clear Data button in Application info of Manage appliaction http://stackoverflow.com/questions/6531173/how-to-disable-the-clear-data-button-in-application-info-of-manage-appliaction
Creating a SoftKeyboard with Multiple/Alternate characters per key http://stackoverflow.com/questions/7752580/creating-a-softkeyboard-with-multiple-alternate-characters-per-key code of the inbuilt keyboard and see if I can reverse engineer it. Edit Would help if developer.android.com 's link to the..
Android 4.0.1 breaks WebView HTML 5 local storage? http://stackoverflow.com/questions/8390985/android-4-0-1-breaks-webview-html-5-local-storage improve this question Via some discussion with a Google engineer it seems that they've made the decision that the file scheme..
Android 4.0 WebView.loadURL oddity http://stackoverflow.com/questions/9105913/android-4-0-webview-loadurl-oddity site with the comment Via some discussion with a Google engineer it seems that they've made the decision that the file scheme..
How users/developers can set the Android's proxy configuration for versions 2.x? http://stackoverflow.com/questions/9446871/how-users-developers-can-set-the-androids-proxy-configuration-for-versions-2-x before Gingerbread or prerhaps Honeycomb. Edit An Android engineer who works on this part of the platform confirms that the system..
How to verify that server calls are being made from the app? http://stackoverflow.com/questions/10155316/how-to-verify-that-server-calls-are-being-made-from-the-app What you need to do depends on your usecase. If 2 is acceptable then you've protected your credential against reverse engineering since it will be encrypted and the password will not be stored anywhere but the user will need to type it in everytime.. be stored anywhere but the user will need to type it in everytime . If you do 1 then someone will be able to reverse engineer your client get the password get the keystore decrypt the private key and certificate and create another client that will.. client that will be able to connect to the server. There is nothing you can do to prevent this you can make reverse engineering your code harder by obfuscation etc but you cannot make it impossible. You need to determine what the risk you are trying..
Is it a bad practice to use negative margins in Android? http://stackoverflow.com/questions/10673503/is-it-a-bad-practice-to-use-negative-margins-in-android android android layout user interface overlap margins share improve this question In 2010 @RomainGuy core Android engineer stated that negative margins had unspecified behavior . In 2011 @RomainGuy stated that you can use negative margins on LinearLayout..
Android access to remote SQL database http://stackoverflow.com/questions/10679588/android-access-to-remote-sql-database would be relatively easy for a determined hacker to sniff the TDS data stream between the device and MSSQL and reverse engineer it and steal your data. Encryption will probably make it much harder almost impossible for a attacker to steal your data...
Navigation Drawer (Google+ vs. YouTube) http://stackoverflow.com/questions/11377472/navigation-drawer-google-vs-youtube links Design docs can be found here . Developer docs can be found here . Edit #2 Roman Nurik an Android design engineer at Google has confirmed that the recommended behavior is to not move the Action Bar when opening the drawer like the YouTube..
How to avoid reverse engineering of an APK file? http://stackoverflow.com/questions/13854425/how-to-avoid-reverse-engineering-of-an-apk-file to avoid reverse engineering of an APK file I am developing a payment processing app for Android and I want to prevent a hacker from accessing any.. and assets and using dex2jar and a Java decompiler they can also access the source code. It's very easy to reverse engineer an Android APK file for more details see Stack Overflow question Reverse engineering from an APK file to a project . I have.. code. It's very easy to reverse engineer an Android APK file for more details see Stack Overflow question Reverse engineering from an APK file to a project . I have used the Proguard tool provided with the Android SDK. When I reverse engineer..
AuthToken from AccountManager in Android Client No Longer Working http://stackoverflow.com/questions/1996686/authtoken-from-accountmanager-in-android-client-no-longer-working in advance. android google app engine authentication share improve this question Got help for this from a Google engineer. Turns out my authToken was expired. I had initially gotten the implementation working in early December the 9th to be exact..
Android JSON HttpClient to send data to PHP server with HttpResponse http://stackoverflow.com/questions/2540786/android-json-httpclient-to-send-data-to-php-server-with-httpresponse my main code firstly I create a JSONObject I have cut it down here for this example JSONObject j new JSONObject j.put engineer me j.put date today j.put fuel full j.put car mine j.put distance miles Next I pass the object over for sending and receive.. is the first time I have used JSON If in the php file I do an echo on _POST 'vehicle' I get the following date today engineer me Can anyone tell me where I am going wrong or if there is a better way to achieve what I am trying to do Hopefully the..
Android: out of memory exception in Gallery http://stackoverflow.com/questions/3238388/android-out-of-memory-exception-in-gallery Eclipse MAT does not appear to show all my app's objects Here's also a useful slide by Romain Guy Android Framework engineer about soft references weak references simple caches image handling http docs.huihoo.com google io 2009 Th_0230_TurboChargeYourUI..
Singletons vs. Application Context in Android? http://stackoverflow.com/questions/3826905/singletons-vs-application-context-in-android share improve this question I very much disagree with Dianne Hackborn and yes I realize she's an Android framework engineer thanks. We are bit by bit removing all singletons from our project in favor of lightweight task scoped objects which can..
Google's voice search speech recognition service http://stackoverflow.com/questions/4055830/googles-voice-search-speech-recognition-service can use the Google application http www.google.com mobile . We've found one article where someone tried to reverse engineer the service at http waxy.org 2008 11 deconstructing_google_mobiles_voice_search_on_the_iphone . We want to better understand..
Closing the database in a ContentProvider http://stackoverflow.com/questions/4547461/closing-the-database-in-a-contentprovider android sqlite android contentprovider share improve this question According to Dianne Hackborn Android framework engineer there is no need to close the database in a content provider. A content provider is created when its hosting process is..
android compass seems unreliable http://stackoverflow.com/questions/6256256/android-compass-seems-unreliable the long winded reply but I have wasted almost a month on trying to get this to work with the help of an expert DSP engineer and we have pretty much written of the android platform as useful in this respect. A Sometimes this works other times it..
Reverse Engineer Android APK to get code? [duplicate] http://stackoverflow.com/questions/6260178/reverse-engineer-android-apk-to-get-code APK to get code duplicate Possible Duplicate Android Getting source code from an APK file Is it possible to reverse engineer a APK file to get the actual code Please advice. Thank you. android android apk share improve this question You can..
How to disable the Clear Data button in Application info of Manage appliaction http://stackoverflow.com/questions/6531173/how-to-disable-the-clear-data-button-in-application-info-of-manage-appliaction
Creating a SoftKeyboard with Multiple/Alternate characters per key http://stackoverflow.com/questions/7752580/creating-a-softkeyboard-with-multiple-alternate-characters-per-key able to give me a head start until then I'll follow the source code of the inbuilt keyboard and see if I can reverse engineer it. Edit Would help if developer.android.com 's link to the LatinIME Keyboard didn't link to a picture of a Sheep Actual..
Android 4.0.1 breaks WebView HTML 5 local storage? http://stackoverflow.com/questions/8390985/android-4-0-1-breaks-webview-html-5-local-storage available here android html5 webview local storage share improve this question Via some discussion with a Google engineer it seems that they've made the decision that the file scheme is insecure. A work around for this is to do the following..
Android 4.0 WebView.loadURL oddity http://stackoverflow.com/questions/9105913/android-4-0-webview-loadurl-oddity Webpage not available site. I found another post here on this site with the comment Via some discussion with a Google engineer it seems that they've made the decision that the file scheme is insecure. See here Android 4.0.1 breaks WebView HTML 5 local..
How users/developers can set the Android's proxy configuration for versions 2.x? http://stackoverflow.com/questions/9446871/how-users-developers-can-set-the-androids-proxy-configuration-for-versions-2-x think there was any platform level support for Wi Fi proxies before Gingerbread or prerhaps Honeycomb. Edit An Android engineer who works on this part of the platform confirms that the system didn't have proxies for different network types e.g. Wi..
|