Love the way you teach one thing at time with detail. we want to see more advance and small suject like how to use android studio profil tool to detect memory leak, how to use some android studio plugins, everything about gradle, materiel design
Thank you very much, Philipp! I finally found out the problem why my login function didn't work. It was because of that obfuscation 🤣 Thanks for clearing that up!
Thanks for the recap PL. In addition, the older version of Play Console had an option to upload the mapping.txt file along with the release build which de-obfuscates any crashes/ANR reported. I haven't used the new console yet, but I hope it will still be there somewhere.
I really like the way you explain things just keeping them simple and straight. Can you please do a video regarding the Android App bundle which is used for updating the application in the playstore ?.
Regarding "data class ..." would one need to not obfuscate every method & reference variable (such as LiveData variables) that makes use of the dataclasses or just not obfuscate the dataclasses themselves?
Hi I just started watching your channel , new to android development so i am watching your android fundamental series and it's awesome and updated, I really feel connection and the flow so plz let me know, what do u recommend next ? better be a playlist or topics thanks...
As you mentioned, we should avoid obfuscation for DTO classes cause of the serialization. How if we use @SerializedName("...") for any fields? I think we don't have to exclude them anymore.
I really like your presentation/explanation style and your explanation is very very well. BTW, how many hours do you research for creating a new video?
I have tried this option on my project. But unfortunately, it is won't be working very well. For an example of my login activity, R8 has renamed all my XML id into another name that could not pass data through to the form validate and API request.
If you follow this up with deployment that would be awesome. Phillipp do any of your app playlists deploy to play? Would love to see a complete app playlist on Continuous integration or Continuous deployment setup that has automated test suite
@@PhilippLackner I know it's not for everyone, since many people will not be doing this on at scale or with a large team of people. However I would bet a good amount of people would benefit from them. I also like robotics and automation in the physical world so finding a way to automate the build release process is cool, even cooler if you automate the test suite as well as the deployment because it takes out the possibility for human error. I think you will enjoy learning about it Phillipp, even if it doesn't end up on the channel, I think you will have good time with it. Thanks again for all the great videos! You have seriously changed the game for many people!
Sir,, Please help me.. I have faced a problem.. My app previous update version was only 10 megabyte. But now I have added some features,, the size jumped to 25 MB, which is not possible because I have added very small amount of code... When I cancled all and go to previous version by github using version control; it also showing 25MB in released version,,, which was 10MB..
what about the inner static classes (Like u said as Model class of josn ) which are inside the class which we have added pro Guard rule for not obfuscate this calss .* does this means variable name which are in inner class also not obfuscated?
This is absolutely helpful..... could you please make tutorial on "Play Feature Delivery" which I am making 3D resources based app development. And I am beginner for app development in android studio.There are four types in it like Install time delivery, on-demand delivery, conditional delivery and instant delivery. First two are useful 🙏
Will it work for Augmented Reality ARCore app? Is it possible to implement it? Will my app size shirnks? Bcoz 3D models are huge. Already I am stuck here by developing app
What if we declare a SerializedName for our JSON fields like this? Do we have to declare a rule in proguard file? data class User( @Expose @SerializedName("email") val email:String? = null, @Expose @SerializedName("username") val username:String? = null, )
Nice content well done man. Could you please talk about ci/cd such as fastlane and how to integrate it with github actions and google play .thanks in advance🌹🌹
man i swear i start my project by watching ur video and now i end it with this tutorial R8 & ProGuard
Best channel for learning Android Dev. Thanks !
This man really makes complex things simple , also wondering that would you make a tutorial about gradle ?
Thanks a lot! Not planned atm, but maybe in future
Best hair in all of Android tutorials
I knew it. But it's the perfect Video to understand all of the Proguard & Obfuscating for beginners.
Great work bro, Keep it up!👍
Love the way you teach one thing at time with detail. we want to see more advance and small suject like how to use android studio profil tool to detect memory leak, how to use some android studio plugins, everything about gradle, materiel design
i've successfully obfuscate my code because of your video thank you
Though these concepts are familiar to me it gives me a quick recap for my interview preparation.
Thanks Pl.
Glad it was helpful!
Thank you very much, Philipp!
I finally found out the problem why my login function didn't work. It was because of that obfuscation 🤣
Thanks for clearing that up!
Glad it helped!
Very nice, Very nice.
I love the Lackner one stop Android shop for professionals at UA-cam
Philipp Lackner you are amazing. you make everything simple
Your "data classes" example saved my time. It was exactly what I was looking for. Thank you.
Many thanks for your video. This is the best video on UA-cam about R8 / Proguard!!! Very helpful
Glad it was helpful!
Thanks for the recap PL. In addition, the older version of Play Console had an option to upload the mapping.txt file along with the release build which de-obfuscates any crashes/ANR reported. I haven't used the new console yet, but I hope it will still be there somewhere.
A brilliant way to deliver a complex topic. Hats off to you man 🙂
thanks boss .. you changed my life
Thanks for the video. Could you make a series of how to release your app?
AMAZING much needed video bud!
i learned a lot from you and keeping learning from you. thanks for sharing your knowledge with us.
Thanks alot man, you made my work easier. I logged my email just to like and comment👍
Very well explained. I was having exactly this problem with JSON.
Great Video Brother
Thank you, I was looking for this these days!!! :D
Very helpful video for a new android developer. Thanks!
Really informative video. Thanks ❤
Glad it was helpful!
Bro u are the best youtuber for app developing and error fixing. Best 💯👍thanks bro and can you tell me something in which I contact you.
I really like the way you explain things just keeping them simple and straight. Can you please do a video regarding the Android App bundle which is used for updating the application in the playstore ?.
Why to backup the mapping file? If Google Play automatically translate the obfuscated code as the Android App Bundle contains the mapping file.
keep it up. very informative and detailed .GOOD JOB!!
Glad it was helpful!
Best teacher 💪
Thanks!
Really great video! You cover some of the key gotchas and then go in depth in such a short video. 👏👏
what a lovely video very insightful
You are the best! Thank you for this.
This is so enough, nice stuff indeed. 🥂 mate
Excellent explanation.............
Very very clearly explained everything. Thanks a lot
Very detailed video, will be releasing my first app in a few months so this will help alot, thanks :)
Very helpful, explained well and easy to understand. Thank you!
make a video on sha-1 and sha-256 .what are these and why we need them?
you are so cool
keep going bro
Nice job bro! I really enjoy you explanations and your teaching style! Thank you 👍👍👍
Excellent tutorial, thanks!
Your videos are as always so informative, clear, and concise. Einfach ausgezeichnet! :)
Wooow, perfect guy! thank you so much!
You're welcome!
Regarding "data class ..." would one need to not obfuscate every method & reference variable (such as LiveData variables) that makes use of the dataclasses or just not obfuscate the dataclasses themselves?
Excellent video, thank you very much, I hope and there is second part of the video
Thanks and welcome
Amazing 🔥
Thank you very much Bro
Very cool video
wish you all the best ❤❤❤👍👍👍👍
thanks wish you the same!
Спасибо тебе. Всё понятно и доступно объяснил. You have awesome pronounce.
very good, as always. Do you have something about signing apps and playstore upload?
It's a great explanation compared to some proguard videos
Sweet, smooth
Hi I just started watching your channel , new to android development so i am watching your android fundamental series and it's awesome and updated, I really feel connection and the flow so plz let me know, what do u recommend next ? better be a playlist or topics thanks...
I'd watch the coroutine playlist afterwards and then it's up to you. Whatever is interesting for you
@@PhilippLackner Thanks Phil It's Really Helping ❤️✌️
how can i use proguard? Should I set useProguard true in app gradle or android.enableR8=false in gradle properties
Thank you so much
Damn you are best !
useful thanks so much!
As you mentioned, we should avoid obfuscation for DTO classes cause of the serialization.
How if we use @SerializedName("...") for any fields? I think we don't have to exclude them anymore.
That's correct, It will work.
I really like your presentation/explanation style and your explanation is very very well.
BTW, how many hours do you research for creating a new video?
make a video to use in spring boot application for jars
Which plugin you have used in your android studio that provides create new classes such as data class etc......??
Very helpful video
Absolutely brillant.👍👍
If possible ,Can you make video on dsl kotlin
I have firebase app with RecyclerView but when I release it into paly store, the app will crash... how to set proground for this problem?
what are these at 09:31 , cubit class and bloc class? is this flutter related stuff or something else.
I have tried this option on my project. But unfortunately, it is won't be working very well. For an example of my login activity, R8 has renamed all my XML id into another name that could not pass data through to the form validate and API request.
If you follow this up with deployment that would be awesome.
Phillipp do any of your app playlists deploy to play?
Would love to see a complete app playlist on Continuous integration or Continuous deployment setup that has automated test suite
still learning about CI/CD myself
@@PhilippLackner I know it's not for everyone, since many people will not be doing this on at scale or with a large team of people. However I would bet a good amount of people would benefit from them.
I also like robotics and automation in the physical world so finding a way to automate the build release process is cool, even cooler if you automate the test suite as well as the deployment because it takes out the possibility for human error.
I think you will enjoy learning about it Phillipp, even if it doesn't end up on the channel, I think you will have good time with it.
Thanks again for all the great videos!
You have seriously changed the game for many people!
@@matt-g-recovers Thanks a lot for the kind words, Matt, appreciate all your comments and support!
How about Flutter applications?
amazing
Thank you
I haven't fill proguard rule and uploaded my app to the market with minify = true. But haven't face any crashes🤔
Sir,, Please help me.. I have faced a problem..
My app previous update version was only 10
megabyte. But now I have added some features,, the size jumped to 25 MB, which is not possible because I have added very small amount of code... When I cancled all and go to previous version by github using version control; it also showing 25MB in released version,,, which was 10MB..
if i use zoom sdk and make magnify true is also change name to zoom library file at time of release
Gracias, me sirvió mucho, excelente explicación....
Excellent! Do you know any rules to keep the classes dynamically generated by ViewBinding?
Hi ) could you show more examples with R8 and ProGuard, like some small, real project?)))
How can I test app bundles in phone.....those are not APK to install right?
Great topic
my app working perfectly on many devices, after "minifyEnabled true" even the mainactivity cant open
How can I use mapping file through git to decrypt it
What is Bloc class and Cubit Class?
how to check r8 app working fine or not?
Does all the comments inside your classes would be obfuscated too?
No there is no reason to include comments in a release build anyways, so they will just be removed
@@PhilippLackner alright, noted on this. Thank you.
I dont know why but after this while generating signed apk ,,,i am getting stackoverflow error ,,,
Hi Philipp! Thanks for the knowledge! I have a question: Is there any way to find out which classes the R8 compiler is breaking?
Bro I try multiscreen support using your tutorial but screen size set and not resize component bro.. How to set that
what about the inner static classes (Like u said as Model class of josn ) which are inside the class which we have added pro Guard rule for not obfuscate this calss .*
does this means variable name which are in inner class also not obfuscated?
This is absolutely helpful..... could you please make tutorial on "Play Feature Delivery" which I am making 3D resources based app development. And I am beginner for app development in android studio.There are four types in it like Install time delivery, on-demand delivery, conditional delivery and instant delivery. First two are useful 🙏
Can this Work for Aide ?
Thank you
Thank you!
You're welcome!
What about yguard?
App get crash in release build when hit api
where is the safe place to initialize API_KEY
Amazing.
Will it work for Augmented Reality ARCore app? Is it possible to implement it? Will my app size shirnks? Bcoz 3D models are huge. Already I am stuck here by developing app
What if we declare a SerializedName for our JSON fields like this? Do we have to declare a rule in proguard file?
data class User(
@Expose
@SerializedName("email")
val email:String? = null,
@Expose
@SerializedName("username")
val username:String? = null,
)
how to upload the mapping.txt file along with app bundle to play console.
Nice content well done man. Could you please talk about ci/cd such as fastlane and how to integrate it with github actions and google play .thanks in advance🌹🌹
Thanks
I use proguard but app sizr not reduced