Home key in android

Signing Your Applications

In this document

See also

Android requires that all apps be digitally signed with a certificate before they can be installed. Android uses this certificate to identify the author of an app, and the certificate does not need to be signed by a certificate authority. Android apps often use self-signed certificates. The app developer holds the certificate’s private key.

Signing Overview

You can sign an app in debug or release mode. You sign your app in debug mode during development and in release mode when you are ready to distribute your app. The Android SDK generates a certificate to sign apps in debug mode. To sign apps in release mode, you need to generate your own certificate.

Signing in Debug Mode

In debug mode, you sign your app with a debug certificate generated by the Android SDK tools. This certificate has a private key with a known password, so you can run and debug your app without typing the password every time you make a change to your project.

Android Studio signs your app in debug mode automatically when you run or debug your project from the IDE.

You can run and debug an app signed in debug mode on the emulator and on devices connected to your development manchine through USB, but you cannot distribute an app signed in debug mode.

By default, the debug configuration uses a debug keystore, with a known password and a default key with a known password. The debug keystore is located in $HOME/.android/debug.keystore, and is created if not present. The debug build type is set to use this debug SigningConfig automatically.

For more information about how to build and run apps in debug mode, see Building and Running.

Signing in Release Mode

In release mode, you sign your app with your own certificate:

  1. Create a keystore. A keystore is a binary file that contains a set of private keys. You must keep your keystore in a safe and secure place.
  2. Create a private key. A private key represents the entity to be identified with the app, such as a person or a company.

Add the signing configuration to the build file for the app module:

  • Invoke the assembleRelease build task from Android Studio.
  • The package in app/build/apk/app-release.apk is now signed with your release key.

    Note: Including the passwords for your release key and keystore inside the build file is not a good security practice. Alternatively, you can configure the build file to obtain these passwords from environment variables or have the build process prompt you for these passwords.

    To obtain these passwords from environment variables:

    To have the build process prompt you for these passwords if you are invoking the build from the command line:

    After you complete this process, you can distribute your app and publish it on Google Play.

    Warning: Keep your keystore and private key in a safe and secure place, and ensure that you have secure backups of them. If you publish an app to Google Play and then lose the key with which you signed your app, you will not be able to publish any updates to your app, since you must always sign all versions of your app with the same key.

    The rest of this document provides detailed instructions about how to generate a private key and sign your apps in release mode with Android Studio.

    Signing Android Wear Apps

    When publishing Android Wear apps, you package the wearable app inside of a handheld app, because users cannot browse and install apps directly on the wearable. Both apps must be signed. For more information on packaging and signing Android Wear apps, see Packaging Wearable Apps.

    Читайте также:  Which devices have android 4 2

    Signing Your App in Android Studio

    To sign your app in release mode in Android Studio, follow these steps:

      On the menu bar, click Build >Generate Signed APK.

    On the Generate Signed APK Wizard window, click Create new to create a new keystore.

    If you already have a keystore, go to step 4.

    On the New Key Store window, provide the required information as shown in figure 1.

    Your key should be valid for at least 25 years, so you can sign app updates with the same key through the lifespan of your app.

    Figure 1. Create a new keystore in Android Studio.

    On the Generate Signed APK Wizard window, select a keystore, a private key, and enter the passwords for both. Then click Next.

    Figure 2. Select a private key in Android Studio.

    On the next window, select a destination for the signed APK and click Finish.

    Figure 3. Generate a signed APK in Android Studio.

    Automatically Signing Your App

    In Android Studio, you can configure your project to sign your release APK automatically during the build process:

    1. On the project browser, right click on your app and select Open Module Settings.
    2. On the Project Structure window, select your app’s module under Modules.
    3. Click on the Signing tab.

    Select your keystore file, enter a name for this signing configuration (as you may create more than one), and enter the required information.

    Figure 4. Create a signing configuration in Android Studio.

    Under Signing Config, select the signing configuration you just created.

    Figure 5. Select a signing configuration in Android Studio.

    You can also specify your signing settings in Gradle configuration files. For more information, see Configuring Gradle Builds.

    Signing Considerations

    You should sign all of your apps with the same certificate throughout the expected lifespan of your applications. There are several reasons why you should do so:

    • App upgrade: When the system is installing an update to an app, it compares the certificate(s) in the new version with those in the existing version. The system allows the update if the certificates match. If you sign the new version with a different certificate, you must assign a different package name to the application—in this case, the user installs the new version as a completely new application.
    • App modularity: Android allows apps signed by the same certificate to run in the same process, if the applications so requests, so that the system treats them as a single application. In this way you can deploy your app in modules, and users can update each of the modules independently.
    • Code/data sharing through permissions: Android provides signature-based permissions enforcement, so that an app can expose functionality to another app that is signed with a specified certificate. By signing multiple apps with the same certificate and using signature-based permissions checks, your apps can share code and data in a secure manner.

    If you plan to support upgrades for an app, ensure that your key has a validity period that exceeds the expected lifespan of that app. A validity period of 25 years or more is recommended. When your key’s validity period expires, users will no longer be able to seamlessly upgrade to new versions of your application.

    If you plan to publish your apps on Google Play, the key you use to sign these apps must have a validity period ending after 22 October 2033. Google Play enforces this requirement to ensure that users can seamlessly upgrade apps when new versions are available.

    Securing Your Private Key

    Maintaining the security of your private key is of critical importance, both to you and to the user. If you allow someone to use your key, or if you leave your keystore and passwords in an unsecured location such that a third-party could find and use them, your authoring identity and the trust of the user are compromised.

    If a third party should manage to take your key without your knowledge or permission, that person could sign and distribute apps that maliciously replace your authentic apps or corrupt them. Such a person could also sign and distribute apps under your identity that attack other apps or the system itself, or corrupt or steal user data.

    Your private key is required for signing all future versions of your app. If you lose or misplace your key, you will not be able to publish updates to your existing appn. You cannot regenerate a previously generated key.

    Your reputation as a developer entity depends on your securing your private key properly, at all times, until the key is expired. Here are some tips for keeping your key secure:

    • Select strong passwords for the keystore and key.
    • Do not give or lend anyone your private key, and do not let unauthorized persons know your keystore and key passwords.
    • Keep the keystore file containing your private key in a safe, secure place.

    In general, if you follow common-sense precautions when generating, using, and storing your key, it will remain secure.

    Expiry of the Debug Certificate

    The self-signed certificate used to sign your application in debug mode has an expiration date of 365 days from its creation date. When the certificate expires, you will get a build error.

    To fix this problem, simply delete the debug.keystore file. The default storage location is in

    /.android/ on OS X and Linux, in C:\Documents and Settings\ \.android\ on Windows XP, and in C:\Users\ \.android\ on Windows Vista and Windows 7.

    The next time you build, the build tools will regenerate a new keystore and debug key.

    Note that, if your development machine is using a non-Gregorian locale, the build tools may erroneously generate an already-expired debug certificate, so that you get an error when trying to compile your application. For workaround information, see the troubleshooting topic I can’t compile my app because the build tools generated an expired debug certificate.

    Signing Your App Manually

    You do not need Android Studio to sign your app. You can sign your app from the command line using standard tools from the Android SDK and the JDK. To sign an app in release mode from the command line:

    Generate a private key using keytool . For example:

    This example prompts you for passwords for the keystore and key, and to provide the Distinguished Name fields for your key. It then generates the keystore as a file called my-release-key.keystore . The keystore contains a single key, valid for 10000 days. The alias is a name that you will use later when signing your app.

    Compile your app in release mode to obtain an unsigned APK.

    Sign your app with your private key using jarsigner :

    This example prompts you for passwords for the keystore and key. It then modifies the APK in-place to sign it. Note that you can sign an APK multiple times with different keys.

    Verify that your APK is signed. For example:

    Align the final APK package using zipalign .

    zipalign ensures that all uncompressed data starts with a particular byte alignment relative to the start of the file, which reduces the amount of RAM consumed by an app.

    Источник

    What is Home key on Android, and how to use it to the fullest!

    As smartphone users, we pay more attention to your device’s standout features and services, ignoring the soft keys that we use the most throughout the day. The Home key is one such sad, taken-for-granted button.

    Care to show a little appreciation? Learn all about the Home key here.

    What is the Home Key?

    The Home key is usually a round or square software button situated in the middle of your navigation bar.

    What purpose does it serve?

    In its simplest form, a top on the Home key takes you home — your device’s home screen — irrespective of the app you are in. It’s especially useful when you’re experiencing a black screen issue.

    But there’s a lot more, as you will soon find out!

    How to get a floating Home key button?

    The Apple iPhone has an Assistive Touch interface that enables a floating home button, which is especially useful for the bigger devices. Android doesn’t have that feature built in, but certainly has a couple of apps for it. Assistive Easy Touch is one such free Android app that allows you to get to the home screen — among other places — with just a couple of taps. The app also has a bunch of customization options, so, it is possible to reach your home screen with just a single tap on the floating button.

    How to hide Home key?

    The Home key sits in the middle of your navigation panel. Irritatingly enough, the panel, which also houses the Back and Recent buttons, eats up a bit of your screen real estate. If that bothers you more than it should, there’s a workaround to enjoy your screen in all its uninterrupted glory.

    Home key gestures

    On-screen gestures can be a bit confusing for beginners, but the learning curve is really not that steep. By enabling gestures, you’ll get to utilize your screen in its entirety; no more hiding (well, partially) that gorgeous wallpaper of yours.

    On Samsung Devices

    The Android P’s gesture system works flawlessly and is fairly straightforward on Samsung devices.

    Here’s how to enable on-screen gestures:

    1. Go to Settings.
    2. Open Display.
    3. Tap on Navigation bar.
    4. Select Full-screen gestures.

    Swiping up from the middle of your screen takes you to your home screen while swiping left and right will act as Recent and Back buttons, respectively.

    On Google Pixel

    Enabling gestures would retrieve some screen real estate on your Google Pixel.

    Here’s how to turn on gestures on your Pixel:

    1. Go to Settings.
    2. Tap System.
    3. Select Gestures.
    4. Turn on.

    Upon enabling, your navigation panel will be replaced by a pill-shaped home button.

    Home Key uses!

    Here is how you can use the Home key to do a variety of cool functions.

    Quickly switch between recent Apps

    On Samsung Devices

    If you’re using a Samsung smartphone, there are a couple of little tricks that could come in handy.

    Sadly, if you’re using full-screen gestures, there is no support for this particular action, so, you’ll have to go old school to access this handy feature.

    1. Locate your Home button at the middle of your navigation bar.
    2. Starting from the Home key, swipe right swiftly towards the Back key.
    3. When a slider pops up, you’ll have the option of shuffling between your recent apps.

    On stock UI, including Google Pixel

    Similar to Samsung devices, pressing and holding the Home key will trigger the Google Assistant. The app scroller/selector, too, is present in the same fashion on your Pixel, but if you’re using gestures, there are a couple of extra tricks you should be aware of.

    That pill-shaped Home key on your navigation bar doubles up as a convenient app switcher with a flick of a finger. A quick flick of the thumb (or any other finger) shows the apps you currently have open. Upon flicking successfully, you’ll also find five apps placed at the bottom of your screen — your most used applications according to Android.

    If you want to quickly switch between your last two apps, just drag the Home pill quickly to the right, making sure you lift your finger after doing so.

    Hold to call Google Assistant

    Google Assistant is arguably the best AI-powered assistant in the market right now, and your smartphone can fire it up with only a couple of clicks.

    There are two ways to open the Google Assistant through your home button:

    1. Locate the home button at the middle of the navigation bar, press and hold to open the Google Assistant.
    2. If you’re using gestures, swipe up from the middle of your screen and hold until the Google Assistant listener pops up.

    Use with Launcher gestures

    Many cool launchers support gestures but for the purpose of this article, we are taking help of Nova Launcher.

    Nova Launcher is one of the most used third-party home screen replacement apps. The launcher is lightweight, fast, and takes care of business in the simplest way. Like Samsung devices, the App Scroller and Google Assistant trigger are available here as well, and there are a couple of extra goodies under the hood.

    App Searcher

    This is, hands down, one of Nova Launcher’s most used and handiest features. While a single tap on the Home key takes you to the first page of your home screen, another tap will open the App Searcher menu. When the dialogue pops up, you can quickly go to your favorite app by searching its name or looking through one of the three pre-defined tabs — Frequent, Recent, and New/Updated.

    App Drawer Access

    Nova Launcher doesn’t have a dedicated app drawer button, but there’s a gesture to make life easier. Swipe up from the Home key to open the app drawer and browse through its vertical 5X5 layout.

    Do you like using gestures on your phone? Is floating button for the Home button your thing?

    Sushan

    A mediocre engineer hoping to do something extraordinary with his pen (well, keyboard). Loves Pink Floyd, lives football, and is always up for a cup of Americano.

    Источник

    Читайте также:  Обмен файлами между android телефонами
    Оцените статью