How to change the Android app package name when assembling with Gradle?
Asked Answered
H

5

55

Is it possible to change the package name of an Android application using Gradle?

I need to compile two copies of the same app, having a unique package name (so I can publish to the market twice).

Holton answered 28/8, 2013 at 15:6 Comment(0)
F
58

You could so something like this

android {
    ...

    defaultConfig {
        minSdkVersion 8
        versionCode 10
    }

    flavorDimensions "flavor1", "flavor2"

    productFlavors {
        flavor1 {
            applicationId "com.example.flavor1"
            versionCode 20
        }

        flavor2 {
            applicationId "com.example.flavor2"
            minSdkVersion 14
        }
    }
}

You can also change the field android.defaultConfig.applicationId if you want to do one-off builds.

Taken from: http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Product-Flavor-Configuration

Fantinlatour answered 28/8, 2013 at 21:30 Comment(6)
For those wondering how to tell Gradle to build a particular flavour: By default all flavours are built, or you can specify one by running e.g. gradle assembleFlavor1Debug or gradle assembleFlavor2Release. gradle tasks is also helpful.Bowler
Hey should I need to copy java files from main/java to the flavor/java when changing the packageName using productFlavor?Tsarism
I don't think so, but I have no data to support that guess.Fantinlatour
Note that packageName was renamed applicationId (and flavorGroups => flavorDimensions) in Android Gradle plugin version 1.0. (Consider updating the answer.)Bowler
packageName is not the same as applicationId, see tools.android.com/tech-docs/new-build-system/…Barometrograph
So multiple apps with the same package string in the manifest, but different applicationIds can be uploaded to the Play Store?Meshwork
B
76

As a simpler alternative to using product flavours as in Ethan's answer, you can also customise build types.

How to choose between the approaches:

  • If you need different package names to be able to have both debug and release apks installed on a device, then use the build type approach below, as Gradle plugin docs agree. In this case flavours are an overkill. (I think all projects should by default do this, as it will make life easier especially after you've published to the store and are developing new features.)
  • There are valid uses for product flavours, the typical example being an app with free and paid versions. In such case, check Ethan's answer and read the documentation too: Configuring Gradle Builds and Gradle Plugin User Guide.

(You can also combine the two approaches, which results in every build variant having distinct package name.)

Build type configuration

For debug build type, and all other non-release types, define applicationIdSuffix which will be added to the default package name. (Prior to Android Gradle plugin version 0.11 this setting was known as packageNameSuffix.)

android {
    buildTypes {
        debug {
            applicationIdSuffix '.debug'
            versionNameSuffix '-DEBUG'
        }

        beta {
            applicationIdSuffix '.beta'
            versionNameSuffix '-BETA'

            // NB: If you want to use the default debug key for a (non-debug) 
            // build type, you need to specify it:
            signingConfig signingConfigs.debug 
        }

        release {
            // signingConfig signingConfigs.release
            // runProguard true
            // ...
        }

    }
}

Above, debug and release are default build types whose some aspects are configured, while beta is a completely custom build type. To build the different types, use assembleDebug, assembleBeta, etc, as usual.

Similarly, you can use versionNameSuffix to override the default version name from AndroidManifest (which I find very useful!). E.g. "0.8" → "0.8-BETA", as configured above.

Resources:

Myself I've been using productFlavors so far for this exact purpose, but it seems build type customisation may be closer to my needs, plus it keeps the build config simpler.

Update (2016): I've since used this approach in all my projects, and I think it definitely is the way to go. I also got it included in Android Best Practices guide by Futurice.

Bowler answered 8/1, 2014 at 21:8 Comment(12)
Wow! thanks. Can I avoid the -debug-unaligned- and -release-unaligned- builds apks that are generated automatically by Gradle?Tympany
Well, yeah. If you do gradle assembleDebug, it will only produce myapp-debug-unaligned.apk. Building a custom type like beta above, assembleBeta will produce both myapp-beta-unaligned.apk and myapp-beta.apk (aligned i.e. optimised), unless you define zipAlign false for that type. See "The possible properties and their default values" in User Guide. I assume it's usually fine to only use zipAlign only for actual release builds.Bowler
Sorry I can't upvote your answer twice! ;) thanks I'll try your solutionTympany
Another tip: when building with Android Studio, make sure you are aware which build variant (type & flavour) is selected. (Perhaps obvious, but I just learned about it a few days ago. :)Bowler
I've a bad karma for AndroidStudio. I'll wait for a decent release. I'm using Eclipse and Gradle with batch. Anyway, thanks for the tip.Tympany
What do you do when you need GCM or other permission which depends on the application ID? e.g `<uses-permission android:name="com.myapp.debug.permission.C2D_MESSAGE" />. Any way to provide variables in androidManifest.xml?Morelock
@Nilzor: Sorry, I have no experience with that. Consider asking a new question.Bowler
The drawback of this approach (which is fine and should be used in conjunction with the above is that Android won't let you have both (say BETA and DEBUG) installed at the same time, because the package is the same and the OS couldn't care less about the file name ;)Dalenedalenna
@MartínMarconcini: you might have misunderstood something. With applicationIdSuffix you specifically change the application ID (package name), which means you certainly can have beta and debug installed at the same time. In addition, my answer shows how to customise version name (which you might for example show inside the app) using versionNameSuffix .Bowler
@Bowler you're correct, I misread your post. This is the correct way to do it if you want to have qa/debug/releases build at the same time (useful when you're developing and you want to keep a release version side by side with your development version, to compare behaviors).Dalenedalenna
@Morelock you can add this to your AndroidManifest: <uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" />Outgrow
For AndroidAnnotations users, this may also help.Marney
F
58

You could so something like this

android {
    ...

    defaultConfig {
        minSdkVersion 8
        versionCode 10
    }

    flavorDimensions "flavor1", "flavor2"

    productFlavors {
        flavor1 {
            applicationId "com.example.flavor1"
            versionCode 20
        }

        flavor2 {
            applicationId "com.example.flavor2"
            minSdkVersion 14
        }
    }
}

You can also change the field android.defaultConfig.applicationId if you want to do one-off builds.

Taken from: http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Product-Flavor-Configuration

Fantinlatour answered 28/8, 2013 at 21:30 Comment(6)
For those wondering how to tell Gradle to build a particular flavour: By default all flavours are built, or you can specify one by running e.g. gradle assembleFlavor1Debug or gradle assembleFlavor2Release. gradle tasks is also helpful.Bowler
Hey should I need to copy java files from main/java to the flavor/java when changing the packageName using productFlavor?Tsarism
I don't think so, but I have no data to support that guess.Fantinlatour
Note that packageName was renamed applicationId (and flavorGroups => flavorDimensions) in Android Gradle plugin version 1.0. (Consider updating the answer.)Bowler
packageName is not the same as applicationId, see tools.android.com/tech-docs/new-build-system/…Barometrograph
So multiple apps with the same package string in the manifest, but different applicationIds can be uploaded to the Play Store?Meshwork
Z
10

With the gradle plugin version of 1.0.0+ you have to use applicationId as stated in the migration guide

Renamed Properties in ProductFlavors

packageName => applicationId

Thus in your build.gradle you would now use:

productFlavors {
   flavor1 {
      applicationId "com.example.flavor1"
   }

   flavor2 {
      applicationId "com.example.flavor2"
   } 
}
Zenithal answered 23/12, 2014 at 14:10 Comment(1)
yes, see my other question #27375433Tympany
Y
9

From Ethan's answer, both flavorGroups and packageName both are not available anymore. Below works as of March 2015.

android {
...

defaultConfig {
    minSdkVersion 8
    versionCode 10
}

flavorDimensions "flavor"

productFlavors {
    flavor1 {
        flavorDimension "flavor"
        applicationId "com.example.flavor1"
        versionCode 20
    }

    flavor2 {
        flavorDimension "flavor"
        applicationId "com.example.flavor2"
        minSdkVersion 14
    }
}
}
Yazzie answered 6/3, 2015 at 3:1 Comment(2)
Hey, your response has already been posted! Please delete it before someone vote it down.Tympany
Hi @Seraphim's, sorry I don't see where it is posted in the thread. Can you please point me? I would be glad to delete.Yazzie
N
2

I did not want to use Flavors, so I found a way to do so with buildTypes. I did this by changing my app/build.gradle file as follows:

defaultConfig {
        applicationId "com" // See buildTypes.type.applicationIdSuffix
        ...
    }

    ...

    buildTypes {
        debug {
            applicationIdSuffix ".domain.name.debug"
            ...
        }
        releaseStaging {
            applicationIdSuffix ".compagny.staging"
            ...
        }
        release {
            applicationIdSuffix ".domain.name"
            ...
        }
    }

This allows me to have 3 apps next to each other on my devices.

I hope this helps others.

Nathalia answered 19/2, 2020 at 18:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.