No video

How to Hide & Protect API Keys in Your Android App (Reverse Engineering)

  Рет қаралды 63,759

Philipp Lackner

Philipp Lackner

Күн бұрын

To make sure only you can access your app's API keys, you need to follow some guidelines. In this video I'll show you what these are.
⭐ Get certificates for your future job
⭐ Save countless hours of time
⭐ 100% money back guarantee for 30 days
⭐ Become a professional Android developer now:
pl-coding.com/...
💻 Let me personally review your code and provide individual feedback, so it won't backfire and cost you a fortune in future:
elopage.com/s/...
Subscribe to my FREE newsletter for regular Android, Kotlin & Architecture advice!
pl-coding.com/...
Join this channel to get access to perks:
/ @philipplackner
Join my Discord server:
/ discord
Regular programming advice on my Instagram page: / _philipplackner_
Checkout my GitHub: github.com/phi...
You like my free content? Here you can buy me a coffee:
www.buymeacoff...

Пікірлер: 160
@atulkumar-bb7vi
@atulkumar-bb7vi Жыл бұрын
We can also Android NDK enviornment where we use c or c++ files, which are directly compiled to binary code. That is the best way to keep any confidential data on client side..
@ViktorYakunin
@ViktorYakunin 5 ай бұрын
like you want to write to file using C++, how is this even different from java? or maybe you think that hardcoding C++ value and providing interface for java is something really hard? Open that binary file with text editor and you will find your key in 5 seconds
@al1gned
@al1gned 2 жыл бұрын
Thank you soo much for this as I was actually looking for something like this like yesterday and see it come from you is really satisfying :))
@karentechnologies3990
@karentechnologies3990 Жыл бұрын
Just keep appending new videos like this one to your android security playlist.
@PassionforTechnology
@PassionforTechnology Жыл бұрын
hey buddy please update this video as kotlin is introduced as buildgradle lang and it's not working thhere
@hdkloh6857
@hdkloh6857 2 жыл бұрын
Thanks for sharing, It is a common interview question...
@augustocera574
@augustocera574 2 жыл бұрын
Thank you very much Philipp. I have struggled a lot with this issue. Now "we" solved it :P
@sharmpuneet
@sharmpuneet 2 жыл бұрын
Thanks for considering my comment and making the video
@quantumgaming7
@quantumgaming7 19 күн бұрын
Hi Phillip you can make updated version of this video with google security plugin
@NurAlam-xn6nx
@NurAlam-xn6nx 5 күн бұрын
No can hide api key in client side as reverse engineers intercepts app traffic using proxy then then can find the api key from the request params
@harwinderbenipal5332
@harwinderbenipal5332 11 ай бұрын
Hi, How do we use this in manifest file?
@myfavourites6383
@myfavourites6383 2 жыл бұрын
Hey Mate, Protecting Api keys from server is better option that this since generated build config file will expose all the keys. One more option we have is using CMake
@aurinkobay7118
@aurinkobay7118 11 ай бұрын
hey people does anyone know which import goes into 4:08? Properties properties = new Properties() thnx I get Properties properties = new Properties() 1st Properties has error Classifier 'Properties' does not have a companion object, and thus must be initialized here equal sign has red underline new Properties() - Properties () Properties properties = new Properties() properties.load(project.rootProject.file("local.properties").newDataInputStream()) buildConfigField("String", "ARC_API_KEY", "\"${properties.getProperty("ARCMAP_API_KEY")}\"" load is red -Unresolved reference: load newDataInputStream() - Unresolved reference: newDataInputStream properties.getProperty - getProperty is red underline I am so lost it is not even funny ... thanx!
@naveenshah8032
@naveenshah8032 9 ай бұрын
hey did you solved the error
@BCS_AAMIRASHRAF
@BCS_AAMIRASHRAF 3 ай бұрын
//protect api key val properties=Properties() properties.load(project.rootProject.file("local.properties").inputStream()) buildConfigField ("String","API_KEY","\"${properties.getProperty("API_KEY")}\"") buildFeatures{ viewBinding=true buildConfig = true } //hope the error got resolved
@sellychandan
@sellychandan 2 ай бұрын
Thanks for the video, I have two doubts about how we will handle The project is in CICD and when we are working as a team. in both cases we are not sharing the git ignore
@ThEGeEeK
@ThEGeEeK 2 жыл бұрын
What you know I have done !! . The scarry part is that how easy is that !!! .Mailed to the concerned person.
@raheemadamboev
@raheemadamboev 2 жыл бұрын
Thanks bro, much love❤
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Love back!
@ahoangnguyen6745
@ahoangnguyen6745 2 жыл бұрын
I did a research on protecting the API key. with how on results you are very good. However, when the hacker gets your APK file, they will easily decompile the encrypted and get the API key easily. Currently, I find the best solution is to save the API key in a native C++ class or create a secure server that provides the API key
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Option 1 can still be decompiled. Any api key can be found if someone really wants it
@nitinpatil6235
@nitinpatil6235 2 ай бұрын
insightful
@clarkkent1473
@clarkkent1473 Жыл бұрын
Additionally one could via smalli, painstakingly attempt to log every variable, function parameters, and return value (similar to strace), and thus attempt to locate api-key-like values by inspecting the output
@pixamob8452
@pixamob8452 2 жыл бұрын
It's okay to use the application signature as an additional key and check it on the server side to ensure that the request is coming from my application
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Exactly
@shlusiak
@shlusiak 2 жыл бұрын
What stops an attacker to just send the right signature from a modified version of your app? You can't trust the client.
@moustafaelsaghier8552
@moustafaelsaghier8552 Жыл бұрын
Can you tell me more about this approach please?
@dmitriymorozov2680
@dmitriymorozov2680 Жыл бұрын
I would want to hear that approach too
@OlafJapp
@OlafJapp Жыл бұрын
If you use a application signature you can reuse that in a replay attack (sending the same signature from an attacker app).
@ekennechilex2390
@ekennechilex2390 Жыл бұрын
What about in the case of SSL Pinning. How do you safe secure your certificate public key on the app since the app needs it to authenticate the data
@deepakbisht4957
@deepakbisht4957 2 жыл бұрын
I hide my key in native c code as it contains garbage value and it's hard to access key from it. And I just don't put my key as it is... I always break the key in may parts and add some more symbols in it to make it harder after try to extract it from reverse engineered extracted APK...
@ABCABC-sw8mh
@ABCABC-sw8mh 4 ай бұрын
why using the api key directly in the code? you can just send a request to your own server that handles the api key and asks the api
@PhilippLackner
@PhilippLackner 4 ай бұрын
Because lots of APIs don't work that way. For example the Google maps sdk for Android expects the key to be merged into the manifest. Also you still need to protect the server then, since what would keep an attacker back from making the same request?
@chirantanbhakhar5241
@chirantanbhakhar5241 6 ай бұрын
Moral: We can only slow down the reverse engineering, Can't completely block third-party access to the API 🙂
@dev_jeongdaeri
@dev_jeongdaeri 2 жыл бұрын
Thanks!😍
@tmjromao
@tmjromao 2 жыл бұрын
Hello Philipp L. Many thanks for the explanation. Excellent as always. Could you do video explaining how to load data from local JSON file? many thanks
@haykmkrtchyan7093
@haykmkrtchyan7093 2 жыл бұрын
Great one, I do it in this way too, except I create my own properties file for that api key.
@muyassarabdullah1504
@muyassarabdullah1504 3 ай бұрын
why in my code Properties not resolved
@DominikSchulzNeristance
@DominikSchulzNeristance 2 жыл бұрын
One Addition, I think you stated it already in some comments this will just make it harder one that does want to find the key will find it for sure. However, even without decompiling an attacker will in first place just try to use a proxy e.g. Charles proxy maybe and check the requests if you do not use certificate pinning. I like your content but people may take it for the bulletproof solution because they may not listen carefully. And yes for 3rd party Apis its cool if you can have the key on your servers and enforce user authentication as well so no one unwanted may talk to your API 👍
@PhilippLackner
@PhilippLackner 2 жыл бұрын
I think I stressed out multiple times that keeping an api key in the app is not 100% safe 🤔
@dmitriymorozov2680
@dmitriymorozov2680 Жыл бұрын
​@@PhilippLackner keeping your API keys on the server requires you to have some kind of jwt token to be obtained and stored locally. Isn't that an issue storing it in sharedPrefs, protoStore, sqlite? (Even using encrypted storage)
@dmitriymorozov2680
@dmitriymorozov2680 Жыл бұрын
You still have to store say sqlcipher password somewhere in your compiled app in order to encrypt and decrypt sqlite database. And decompiled app will show this password. Maybe we can obtain jwt+sqlcipher pass on login session and store sclcipher password in encrypted sharedprefs to read/write encrypted sql? As far as I know encrypted sharedPrefs store its keys in OS protected storage
@LabGecko
@LabGecko 11 ай бұрын
It amazes me that Google has not yet implemented an encrypted storage standard into Android Studio. This issue shouldn't be an us problem if we're using Android Studio to build apps for Google's ecosystem.
@sreeshtyraychoudhury2713
@sreeshtyraychoudhury2713 4 ай бұрын
what if we want to share across other dev
@user-js7jt2cb4x
@user-js7jt2cb4x 4 ай бұрын
Nice video! But made me think about CI, if i'm trying to use github actions and try to run a gradle action such as lintDebug, how would i do that if in the repository doesn't have the api_key explicitly
@sumit_soni
@sumit_soni 2 жыл бұрын
Thanks a lot Phillip ❤️💯💯
@ubersticks
@ubersticks Жыл бұрын
The "buildConfigField" causes an error with newer versions of Gradle and Android Studio: "Build Type contains custom BuildConfig fields, but the feature is disabled". You can fix this by adding android { ... buildFeatures { ... buildConfig = true } }
@LabGecko
@LabGecko 11 ай бұрын
Just ran into this myself. To be clear for others, that code goes in the App level build.gradle file, listed in Android Studio Giraffe as build.gradle( :app)
@alvarorafaelalcobamiranda6256
@alvarorafaelalcobamiranda6256 Жыл бұрын
i love the explication, one fan more :)
@Realmoviesstudios
@Realmoviesstudios 6 ай бұрын
Thank you so much for this, but please how do I protect my web app, Like a WordPress website that I converted into an android app Is it protected as my website is protected? Please help me out, let me know, if I will need to protect the we app separately God bless you
@hansheng654
@hansheng654 2 жыл бұрын
Api key shouldn't be used as authentication anyway. They are for authorisation. You should still be authenticated otherwise like oauth and perhaps retrieve the key from server dynamically.
@llothar68
@llothar68 9 ай бұрын
How should this be a difference? Technically it’s the same problem
@clarkkent1473
@clarkkent1473 Жыл бұрын
DO NOTE with smali editing, it is possible that someone could invoke Log.v on variables until an api key like value is reported if function chaining is done, eg FUNC(SECURE_GET()); then one could unchain this to see what SECURE_GET returns
@praveens6832
@praveens6832 Жыл бұрын
Thank you for this informative video.
@user-yd8ux2ou6k
@user-yd8ux2ou6k 4 ай бұрын
thanks a lot. Could we save some secret keys in jenkins and got the value from app? if could , could you please help share it, thanks a lot
@manohar_reddy_anugu
@manohar_reddy_anugu 2 жыл бұрын
Hi it was me who gave the firebase suggestion on stack over flow. Too Sad that it is still the only way .
@SurazVerma
@SurazVerma 2 жыл бұрын
Hey Phillip, I've been using this approach for saving the API keys, but in a modular architecture is there a way to pass these values to the specific module (let's say in layered modular architecture in where you set your network config in one of the layers).
@Koki-hq1yc
@Koki-hq1yc 7 ай бұрын
Did you solve this issue. I have same question
@SurazVerma
@SurazVerma 7 ай бұрын
@@Koki-hq1yc unfortunately I couldn’t find any solution yet
@nareshnagaraj-kx1xb
@nareshnagaraj-kx1xb 2 жыл бұрын
good one Phillippuh , make a video series for API integration in android
@moloodayat6039
@moloodayat6039 7 ай бұрын
Can you make a video about certificate pinning?
@abhisheks2135
@abhisheks2135 2 жыл бұрын
Please make a video to secure api keys from NDK.
@muhannddh
@muhannddh 2 жыл бұрын
How about to secure room DB and encryption the record inside the room
@programmingwithjackchew903
@programmingwithjackchew903 2 жыл бұрын
hi Phillip can you do the tutorial regarding login and sign up using jetpack compose and room database thank you very much, I really need this course
@felipefuenzalida5492
@felipefuenzalida5492 2 жыл бұрын
yo bro, really thankya. Big respect
@flowzk921
@flowzk921 2 жыл бұрын
thanks man, using the Jetpack security library do have any tutorial around using it with Datastore
@user-vj8dj1pb7l
@user-vj8dj1pb7l 9 ай бұрын
be careful if you use multiple module structure. there is need to pay attention - which gradle to update
@huseyintas9855
@huseyintas9855 2 жыл бұрын
Thank you for this informative video
@anaslakhani
@anaslakhani 2 жыл бұрын
Hey! I use Firebase Firestore to read The Base URL and API KEY's also how's that ? and with this approach I also change dynamic change things ??
@rahulkumar-td7pn
@rahulkumar-td7pn 2 жыл бұрын
i would rather put my api keys and keystore in my private app center account and access in my gradle file through build.gradle, in this it wont be exposed as plain text, whats ur say?
@VikramsinhChampavat
@VikramsinhChampavat Жыл бұрын
Will this approach stop Google Play team to give an error of "Leaked GCP API Keys"?
@MenaSamer
@MenaSamer 2 жыл бұрын
it will be good to add more videos about that topic
@PhilippLackner
@PhilippLackner 2 жыл бұрын
What is still unclear?
@MenaSamer
@MenaSamer 2 жыл бұрын
@@PhilippLackner everything is clear for me, I mean more tips about security as you mentioned at the end of the video
@divyanathanarul550
@divyanathanarul550 2 жыл бұрын
Hi Philip. We can use KMS to protect the Api Keys. Please make video on that.
@mostafaelnagar900
@mostafaelnagar900 2 жыл бұрын
great great great if you could make a video about how to use Cmake to secure Api key it will be good
@rogercolque
@rogercolque Жыл бұрын
you said that i can get this key with other tools revers engineering? what aabout an API_KEY
@hossamqandel5638
@hossamqandel5638 2 жыл бұрын
you don't know how long i waited for this video tutorial is it possible to make a project app to download youtube videos on local or full guied for paging 3?
@grzegorzsamojedny
@grzegorzsamojedny 2 жыл бұрын
Cool 😎 Thank you. I like this kind of movies.
@ahmedmudassir1035
@ahmedmudassir1035 2 жыл бұрын
what about the team member checks the data of the API file using debug mode? whats the purpose of hiding from team members?
@siddheshpalkar3986
@siddheshpalkar3986 2 жыл бұрын
Nice.. 👍 See if you can make video on hide api keys by using NDK CMake. Would be love to see it.. 😊
@911_Shorts
@911_Shorts Жыл бұрын
If I put my API Key in my server, then my server also has a server token which validates requests from either app or hacker sites. But now the question is, the server token is still in my app !! Hackers can get it and use it to find the actual API key !!
@kartikagarwal1795
@kartikagarwal1795 2 жыл бұрын
In case of Google Maps API Key, we need to put in meta TAG inside MANIFEST. Followed same procedure but after putting the build APK in STUDIO ANALYZER manifest displays the keyy @philipp how to secure this
@kamertonaudiophileplayer847
@kamertonaudiophileplayer847 2 жыл бұрын
I also used minSdk 21, but Android auto requires 23, so I bumped a little.
@mustafaammar551
@mustafaammar551 2 жыл бұрын
very cool video thank you BRO 👍👍👍
@totktonadafrakc5948
@totktonadafrakc5948 2 жыл бұрын
Downloading api key through firebase is meanless, as nothing prevents attackers from making app with the same package name and google-services and obtaining keys on launch.
@yeyaanshkit
@yeyaanshkit 2 жыл бұрын
Hi Brother Philipp can you please create a guide video for becoming an Android Developer using Kotlin... Specially for Students in College.. Like where to follow the materiel... Please a New video on this topic will be lit 😊 Please...
@peeranpc4262
@peeranpc4262 Жыл бұрын
Yaar you can start with Udacity courses. Trust me, they are free and top notch! I am speaking with experience because I asked the same question last year...
@youngtigersivateja
@youngtigersivateja 2 жыл бұрын
Hey Philipp, thanks for making this video, this might be helpful to secure API Keys to major extent. And Can you also help us secure different API Keys with same Key name for different builds?
@AhmedAli-ld6en
@AhmedAli-ld6en 2 жыл бұрын
philip can you please make a video about paging 3 with rick and morty API and room caching
@nevardreik
@nevardreik 2 жыл бұрын
An even easier way of accessing local.properties is: val localProperties = gradleLocalProperties(rootDir) - then you can use localProperties["someKey"] to access its value.
@and70
@and70 Жыл бұрын
Ty for wasting my time, its not even working.
@nevardreik
@nevardreik Жыл бұрын
@@and70 you’re welcome.
@chienlichen6551
@chienlichen6551 2 жыл бұрын
Thanks bro, is very vedio.
@kingrajveer2885
@kingrajveer2885 2 жыл бұрын
Please make one video for firebase rulse for specific app.
@ayoubdev
@ayoubdev 2 жыл бұрын
is Same if you cerated in Build Type release ?? buildconfigfield
@rvnareshkumar
@rvnareshkumar 2 жыл бұрын
Can You do a video on Securing webservices calls
@OlafJapp
@OlafJapp Жыл бұрын
Its good to use API keys only on the server, but if someone is faking a client, then its possible to attack the server with replay attacks. So we need to secure also the communication with the server. And how can we tell the server that we are the original client? We still need an API key for our server?
@PhilippLackner
@PhilippLackner Жыл бұрын
If the server uses it, the client can't abuse it though but only via the API the server exposes. If the server has a rate limit for example the client can't do anything about it since they still don't know the key. And if the server is really strict with incoming params the client can't get more info than a normal logged in user for example
@go_better
@go_better 2 жыл бұрын
Helloooo! Little offtopic here. Could you suggest some good, comfy android developers / freelancers community in discord? I'm trying to go that route, but I tend to lose hope while being alone, you know? Thanks for your vids, btw! They're awesome!
@haiderali7342
@haiderali7342 Жыл бұрын
Sir Your video Help me Alot in Andorid development Thanks Alot to keep it simple
@noelgozon2454
@noelgozon2454 Жыл бұрын
I am using NDK to secure my keys.
@AjayChoudhary-on3uw
@AjayChoudhary-on3uw 2 жыл бұрын
Hi @philip, How about api key for Admob ads or fb ads?
@ahmednashwan8111
@ahmednashwan8111 2 жыл бұрын
This is so good, thanks a lot, but I think this solution is not the best, the attacker can access the key if he have experience on attacking, I think I have something more secure I wanna share that in next comment, and if that is good or not please discuss me about that, thanks a lot, have a nice day.
@alexjames1575
@alexjames1575 2 жыл бұрын
I need a little help from you sir How can we get to communicate with each other. I need a little help with something.
@andrevini8099
@andrevini8099 Жыл бұрын
Hey guys, I have a doubt, If i put this apiKeys as local files how do you guys send them to github, or CD/CI softwares ?
@PhilippLackner
@PhilippLackner Жыл бұрын
You'll need to create the local.properties file with your API key using a script step before building the project
@andrewdunbar828
@andrewdunbar828 9 ай бұрын
Is this using Groovy rather than Kotlin DSL? I'm having trouble following it. - Answer is yes by the way.
@OP-pv6un
@OP-pv6un 9 ай бұрын
this using only Groovy (all old videos using Groovy) ,, Kotlin DSL is new 2023
@andrewdunbar828
@andrewdunbar828 9 ай бұрын
@@OP-pv6un Ah I only really started Android in 2023 so didn't realize it was so new. Thanks.
@valeriyo
@valeriyo 2 жыл бұрын
Why are you still using Groovy gradle scripts, not Kotlin DSL? 😒
@rameswartarai8452
@rameswartarai8452 2 жыл бұрын
I like your videos. Can you create a video explaining how to prevent our app from rooted devices?
@maskedredstonerproz
@maskedredstonerproz 2 жыл бұрын
Prevent them being installed on rooted devices?? why would you want that??
@streetfood7161
@streetfood7161 2 жыл бұрын
make jni folder and create file C to save the key and then use NDK to load the library, I think this is the best way.
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Can still be found by reverse engineering
@sharmpuneet
@sharmpuneet 2 жыл бұрын
Decompiling APK won’t work with NDK but hacker can use deassembler and check .so files. NDK is still better than saving in build.gradle. It makes life of a hacker a little difficult
@AmirRaza1
@AmirRaza1 2 жыл бұрын
Do not put keys in plain string format in jni. Anyone can find .so file and extract that one.
@AmirRaza1
@AmirRaza1 2 жыл бұрын
Gradle in not the secure way to put keys. Anyone can find BuildConfig file after reverse engineer and extract that one easily.
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Congrats for not fully watching the video
@MadManiacsam
@MadManiacsam 2 жыл бұрын
What if we make a cmake file and put api keys inside that ? Then use .gitignore.
@maskedredstonerproz
@maskedredstonerproz 2 жыл бұрын
how would you use a cmake file??
@kishanpmevada
@kishanpmevada 2 жыл бұрын
Hello, Thank for the information, I just want to ask you a question, Can we store api key using native code with C++ ?? is that a legal way to put api keys in code ?
@dmytroberezhnyi717
@dmytroberezhnyi717 2 жыл бұрын
it a is legal way, and I think it is more safe to store it there. But you should not store your API key in native code just like that. Make some magic function that builds your API key, so it is really hard to read the assembler code with some confused logic and get your API key
@haykmkrtchyan7093
@haykmkrtchyan7093 2 жыл бұрын
Can I save it in EncryptedSharedPreferences? Or attackers can decrypt that?
@PhilippLackner
@PhilippLackner 2 жыл бұрын
How are you going to do that? You'll have a function call somewhere where you save the plain text api key in shared pref and therefore the key will be in memory once.
@haykmkrtchyan7093
@haykmkrtchyan7093 2 жыл бұрын
@@PhilippLackner oh right 😅
@rami8442
@rami8442 2 жыл бұрын
Hi, Can you create some videos about firebase function with firestore ? Thank you
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Did already
@rami8442
@rami8442 2 жыл бұрын
@@PhilippLackner Sorry i mean "cloud firestore function triggers".
@khapp7821
@khapp7821 2 жыл бұрын
Please make the sound a little louder.
@shmnysm7481
@shmnysm7481 2 жыл бұрын
Another solution is store api key inside an encrypted prepopulate local database
@PhilippLackner
@PhilippLackner 2 жыл бұрын
How do you want to pre-populate it? At some place in your code you'll have to do that and the API key will be the parameter for that function in clear text.
@shmnysm7481
@shmnysm7481 2 жыл бұрын
​@@PhilippLackner prepopulate a Room database from a prepackaged database file that is located apk assets directory.
@PhilippLackner
@PhilippLackner 2 жыл бұрын
@@shmnysm7481 Then the key will be somewhere in your code to decrypt it. Again, you can make it harder of course, but if someone really wants it, they'll find it.
@peeranpc4262
@peeranpc4262 2 жыл бұрын
What's the difference between the approach you showed in your dictionary app series and this one?? Please explain a bit. Thank you! ❤️❤️❤️
@PhilippLackner
@PhilippLackner 2 жыл бұрын
I don't remember what I did there haha
@peeranpc4262
@peeranpc4262 2 жыл бұрын
@@PhilippLackner What you did is : In app gradle buildConfig("String", "API_KEY", API_KEY) instead of properties etc Is this the same as new approach??
@antimahesaclubamc5665
@antimahesaclubamc5665 Жыл бұрын
Please tutor in java dont on kotline.. please
@danishmehmood5375
@danishmehmood5375 Жыл бұрын
not useful, anyone can crack the key and API hit during the call, with network trace.
@alexjames1575
@alexjames1575 2 жыл бұрын
Hey bro
@hikmetqedirov8337
@hikmetqedirov8337 2 жыл бұрын
👌👍
@breakeract796
@breakeract796 2 жыл бұрын
There is no secure by this way :D I think you never reverse app to get API key before :D This way just hide the key from source code, but when you build to apk file...the key must be provide and compress inside apk file :D
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Oh, another one who didn't watch the video
@breakeract796
@breakeract796 2 жыл бұрын
@@PhilippLackner Yes I did. You can easy to retrieve the API key by RE
@ashar9327
@ashar9327 2 жыл бұрын
🌹🤗
@ssEACatt
@ssEACatt Жыл бұрын
This one felt a bit like click bait 😅"How to hide and protect" - "you can't", but only said after half the video content
Shrink, Optimize and Secure Your App With R8 & ProGuard - Full Guide
18:08
5 Fatal Coroutine Mistakes Nobody Tells You About
18:15
Philipp Lackner
Рет қаралды 86 М.
How I Did The SELF BENDING Spoon 😱🥄 #shorts
00:19
Wian
Рет қаралды 36 МЛН
Zombie Boy Saved My Life 💚
00:29
Alan Chikin Chow
Рет қаралды 6 МЛН
الذرة أنقذت حياتي🌽😱
00:27
Cool Tool SHORTS Arabic
Рет қаралды 6 МЛН
Your API Keys are NOT SAFE in a native app 🤬
9:26
Simon Grimm
Рет қаралды 11 М.
Hacking/Reverse Engineering a PRIVATE api
6:35
chriscodes
Рет қаралды 106 М.
5 JavaScript API Key Mistakes (and how to fix them)
12:49
James Q Quick
Рет қаралды 75 М.
The only way to Secure API Keys in Android!
8:01
Charfaoui Younes
Рет қаралды 1 М.
No Code App Development is a Trap
9:31
Coding with Dee
Рет қаралды 212 М.
Should You Use Compose State or StateFlow in Your ViewModels?
13:59
Philipp Lackner
Рет қаралды 75 М.
How principled coders outperform the competition
11:11
Coderized
Рет қаралды 1,6 МЛН
Turning bad React code into senior React code
13:10
Cosden Solutions
Рет қаралды 89 М.
THIS Is How You Measure the Performance of Your Android App
21:30
Philipp Lackner
Рет қаралды 42 М.