fbpx
  1. Tubelator AI
  2. >
  3. Videos
  4. >
  5. Science & Technology
  6. >
  7. 5 Essential Steps for Deploying Your App to Google Play Successfully

5 Essential Steps for Deploying Your App to Google Play Successfully

Available In Following Subtitles
English
Variant 1
Posted on:
Learn the crucial steps to take before deploying your Android app to Google Play. Ensure code obfuscation and shrinking, along with four other key points, to avoid regrets later on.
tubelator logo

Instantly generate YouTube summary, transcript and subtitles!

chrome-icon Install Tubelator On Chrome

Video Summary & Chapters

No chapters for this video generated yet.

Video Transcript

0:00
hey guys and welcome back to a new video
0:02
in this video just very quickly I want
0:03
to show you five things that you
0:06
definitely need to make sure of when you
0:09
want to deploy your Android app to
0:11
Google Play so take this as a deployment
0:13
checklist if you think about pushing an
0:15
app to Google Play to definitely make
0:16
sure you apply these Five Points number
0:19
one is you should definitely have code
0:20
obfuscation and code shrinking enabled
0:23
so here I am in a random project from my
0:25
previous video about encrypted data
0:26
store that doesn't matter but in Android
0:29
you have this build Gradle file in which
0:31
you have your Gradle config and down
0:33
here for the release build type you have
0:35
this Boolean is Minify enabled and by
0:37
default it's actually set to false but
0:39
you want to set this to true because
0:43
that will use R8 which is a code
0:46
optimization tool which will in the end
0:48
just obfuscate the source code of your
0:50
app before packaging it into an APK
0:53
obfuscation means that all your function
0:56
variable class names that are very human
0:58
readable in the actual source code will
1:01
be converted to very unreadable names
1:04
for the actual release build so what was
1:06
previously main activity will maybe just
1:08
be um b c or so so some random sequences
1:12
of letters and this on the one hand has
1:14
the advantage that of course your
1:15
resulting APK will be smaller since
1:18
possibly longer class names longer
1:20
source code files will be converted to
1:22
Shorter files with um shorter names and
1:25
it also has the side effect that your
1:28
app will be harder to reverse engineers
1:30
so someone a possible attacker who might
1:32
get your APK can of course try to
1:35
extract the source code of that again
1:37
and I don't know try to find sensitive
1:39
data try to find certain API Keys
1:42
certain secrets and if you Minify your
1:44
app with code officiation then that'll
1:46
of course be quite harder since the
1:48
attacker can't easily read your class
1:50
names and can't easily navigate through
1:52
the code base it's important to say that
shape-icon

Download extension to view full transcript.

chrome-icon Install Tubelator On Chrome