Determine the package name of an Android App using ADB
adb shell pm list packages -f
References
https://www.aftvnews.com/how-to-determine-the-package-name-of-an-android-app/
adb shell pm list packages -f
References
https://www.aftvnews.com/how-to-determine-the-package-name-of-an-android-app/
Start adb daemon on remote device
adb devices
$ adb devices * daemon not running. starting it now on port 5037 * * daemon started successfully * List of devices attached 5200fe4259bcc000 device
do client to server port forwarding using ssh on port 5037
References
https://dontbelievethebyte.github.io/articles/2015/01/15/debug-remotely-on-android-via-ssh-tunnel/
https://developer.android.com/studio/command-line/adb
https://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
//get destination to update file and set Uri //TODO: First I wanted to store my update .apk file on internal storage for my app but apparently android does not allow you to open and install //aplication with existing package from there. So for me, alternative solution is Download directory in external storage. If there is better //solution, please inform us in comment String destination = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "/"; String fileName = "AppName.apk"; destination += fileName; final Uri uri = Uri.parse("file://" + destination); //Delete update file if exists File file = new File(destination); if (file.exists()) //file.delete() - test this, I think sometimes it doesnt work file.delete(); //get url of app on server String url = Main.this.getString(R.string.update_app_url); //set downloadmanager DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); request.setDescription(Main.this.getString(R.string.notification_description)); request.setTitle(Main.this.getString(R.string.app_name)); //set destination request.setDestinationUri(uri); // get download service and enqueue file final DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE); final long downloadId = manager.enqueue(request); //set BroadcastReceiver to install app when .apk is downloaded BroadcastReceiver onComplete = new BroadcastReceiver() { public void onReceive(Context ctxt, Intent intent) { Intent install = new Intent(Intent.ACTION_VIEW); install.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); install.setDataAndType(uri, manager.getMimeTypeForDownloadedFile(downloadId)); startActivity(install); unregisterReceiver(this); finish(); } }; //register receiver for when .apk download is compete registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
References
https://stackoverflow.com/questions/4967669/android-install-apk-programmatically
https://stackoverflow.com/questions/39147608/android-install-apk-with-intent-view-action-not-working-with-file-provider/40131196#40131196
yourRecyclerView.getLayoutManager().findFirstVisibleItemPosition();
you probably need to cast your LayoutManager to a LinearLayoutManager or GridLayoutManager (you have to cast to the correct type you are using) to access these findVisibleXXXX() methods.
OkHttpClient eagerClient = client.newBuilder() .readTimeout(500, TimeUnit.MILLISECONDS) .build(); Response response = eagerClient.newCall(request).execute();
References
https://square.github.io/okhttp/4.x/okhttp/okhttp3/-ok-http-client/
create a channel id
<string name="default_notification_channel_id" translatable="false">fcm_default_channel</string>
add a meta-data in manifest file
<application> ... <meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="@string/default_notification_channel_id"/> </application>
channel assignment
... // Since android Oreo notification channel is needed. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { String channelId = context.getString(R.string.default_notification_channel_id); NotificationChannel channel = new NotificationChannel(channelId, title, NotificationManager.IMPORTANCE_DEFAULT); channel.setDescription(body); mNotificationManager.createNotificationChannel(channel); builder.setChannelId(channelId); } mNotificationManager.notify(1, notification); ...
References
https://medium.com/globallogic-latinoamerica-mobile/firebase-cloud-messaging-warning-updating-to-android-oreo-1343fe894bd5
https://firebase.google.com/docs/cloud-messaging/android/receive
./gradlew assembleRelease or assemble(#your_defined_buildtype)
References
https://stackoverflow.com/questions/20921456/android-studio-how-to-generate-signed-apk-using-gradle
https://developer.android.com/studio/build/building-cmdline
android { defaultConfig { applicationId "com.example.myapp" } productFlavors { free { applicationIdSuffix ".free" } pro { applicationIdSuffix ".pro" } } }
android { ... flavorDimensions "default" ... }
It is better to use different
AndroidManifest.xml
andgoogle-services.json
file for each flavor
References
https://developer.android.com/studio/build/application-id
https://developers.google.com/android/guides/google-services-plugin
https://stackoverflow.com/questions/44105127/android-studio-3-0-flavor-dimension-issue
https://android.jlelse.eu/how-to-use-different-google-services-json-file-with-multiple-product-flavors-android-7853d98dd6c0
https://stackoverflow.com/questions/34990479/no-matching-client-found-for-package-name-google-analytics-multiple-productf
https://medium.com/@Miqubel/multiple-build-types-in-firebase-on-android-6f6715f6dd83
https://www.zidsworld.com/android-tutorials/here-is-how-to-fix-no-matching-client-found-for-package-name-on-android/
Generate Java Constants
android { buildTypes { debug { buildConfigField "int", "FOO", "42" buildConfigField "String", "FOO_STRING", "\"foo\"" buildConfigField "boolean", "LOG", "true" } release { buildConfigField "int", "FOO", "52" buildConfigField "String", "FOO_STRING", "\"bar\"" buildConfigField "boolean", "LOG", "false" } } }
You can access them with BuildConfig.FOO
Generate Android resources
android { buildTypes { debug{ resValue "string", "app_name", "My App Name Debug" } release { resValue "string", "app_name", "My App Name" } } }
You can access them in the usual way with @string/app_name
or R.string.app_name
String type build config fields should be declared like this:
buildConfigField "String", "SERVER_URL", "\"http://dev.myserver.com\""
References
https://stackoverflow.com/questions/17197636/is-it-possible-to-declare-a-variable-in-gradle-usable-in-java
https://stackoverflow.com/questions/30796533/how-to-generate-buildconfigfield-with-string-type
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest ...> <uses-permission android:name="android.permission.INTERNET" /> <application ... android:usesCleartextTraffic="true" ...> ... </application> </manifest>
References
https://stackoverflow.com/questions/45940861/android-8-cleartext-http-traffic-not-permitted