54

I am following one of the Google Codelabs for making an Instant App.

And I was trying to create topeka-ui (A UI feature module for Instant Apps).

When I try to run one of the instant app module it says :

A dependent feature was defined but no package ID was set. You are probably missing a feature dependency in the base feature.

Edric
  • 24,639
  • 13
  • 81
  • 91
erluxman
  • 18,155
  • 20
  • 92
  • 126
  • Did you set baseFeature=true in topekaui build.gradle because data binding aren't currently supported in non-base feature modules? I did it and also met your problem. And also cant found good solution for it... – Mkr Aug 28 '17 at 09:26
  • I have not found the solution yet either – erluxman Aug 28 '17 at 09:30
  • 2
    the most annoying thing is that i cannot even find where the dependent feature was defined. no log, no debug info. nothing. Its getting worse and worse to develop in Android Studio. So freaking frustrating. – Gillis Haasnoot Nov 15 '17 at 01:07

9 Answers9

126

I had an issue in that I had an Android app and an Android Library, but I had used the wrong plugin by mistake.

For an app:

plugins {
    id "com.android.application"
    id "kotlin-android"
}

For a library:

plugins {
    id "com.android.library"
    id "kotlin-android"
}
Damien Dennehy
  • 3,937
  • 2
  • 19
  • 21
  • 4
    Thank you so much! For some reason, Android Studio automatically created the plugin id "com.android.application" in library gradle too! – Idan Nov 14 '20 at 10:38
36

Since this is the only stackoverflow question for "A dependent feature was defined but no package ID was set. You are probably missing a feature dependency in the base feature." I will answer what my issue was here rather than create a new question. I had a module that was giving me this error and couldn't figure out the problem. In the dependent module's build.gradle file, I had:

apply plugin: 'com.android.feature'

It should have been:

apply plugin: 'com.android.library'
tim.paetz
  • 2,635
  • 20
  • 23
11

I just ran through the codelab on AS 3.0 beta 2 without issues (*note). After what point in the codelab did your issue appear?

You might’ve missed a step. Double check that your base module’s build.gradle has:

dependencies {
    ...
    application project(":topekaapk")
    feature project(":topekaui")
}

Leaving out feature project(":topekaui") can cause this error:

Error:com.android.builder.internal.aapt.AaptException: A dependent feature was defined but no package ID was set. You are probably missing a feature dependency in the base feature.

Note: because data-binding has been disabled for non-base modules (https://issuetracker.google.com/63814741), there requires some additional steps in the multi-feature step-7 to get around it (ie. getting rid of the DataBindingUtil).

TWL
  • 6,228
  • 29
  • 65
  • Posting my exact message to help with search engines: Caused by: com.android.builder.internal.aapt.AaptException: Dependent features configured but no package ID was set. – methodsignature Oct 15 '18 at 15:13
9

You might have added dependent module as a application, it should be added as a library. Check build.gradle file of module and

Replace

plugins {
    id 'com.android.application'

to

plugins {
    id 'com.android.library'

also remove applicationId from build.gradle's of inner module if its added in defaultConfig block

shubham chouhan
  • 580
  • 7
  • 8
7

I did it in build.gradle(...mylibrary), fixed it and it worked:

plugins {
- id 'com.android.application'
+ id 'com.android.library'}

defaultConfig {
    - applicationId "com.example.mylibrary"
    minSdk 21
    targetSdk 32}
4

I had this issue in my Dynamic Feature Module when I forgot to add a reference to it in the base module's android.dynamicFeatures = [":module_name"] array

kassim
  • 3,880
  • 3
  • 26
  • 27
1

Base from basic instant app project structure,

When you build your instant app, this module takes all of the features and creates Instant App APKs. It does not hold any code or resources; it contains only a build.gradle file and has the com.android.instantapp plugin applied to it. Here's an example:

apply plugin: 'com.android.instantapp'
...
dependencies {
    implementation project(':base')
    // if there additional features, they go here
    implementation project(':feature1')
}

Furthermore, note that

The base feature module's build configuration file needs to apply the com.android.feature gradle plugin. The build.gradle file does not contain any instant app specific modifications.

With this and in line with your encountered error, you may want to check your base feature module's build configuration file. Lastly, make sure that you also sync your project with gradle files.

See Android Instant Apps documentation for more information.

Teyam
  • 7,686
  • 3
  • 15
  • 22
  • WARNING: The com.android.feature plugin is deprecated and will be removed in a future gradle plugin version. Please switch to using dynamic-features or libraries. For more information on converting your application to using Android App Bundles, please visit https://developer.android.com/topic/google-play-instant/feature-module-migration – gb96 Jul 21 '19 at 05:28
1

With the following gradle pugin

classpath 'com.android.tools.build:gradle:3.5.1'

In my case, after adding to app's build.gradle

android{
dataBinding {
        enabled = true
    }
}

I got the posted error, then doing the following

Android studio -> invalidate cache and restart

Issue got fixed!

Not Fixed Yet?

Probably there is a conflicting dependency residing in build.gradle, like the older and current version of the same library

SaadurRehman
  • 622
  • 8
  • 20
0

This solution will work 100%

Step 1) Open gradle.properties

Step 2) Add android.enableJetifier=true to the file

Done!

See The Screen Shot: enter image description here

hassan bazai
  • 424
  • 6
  • 9
  • It worked for once, but after my second Make Project comment, it crashed. So, this is not helpful, but it might not just for me I'm not sure. – Bay Nov 24 '22 at 17:56