Questions tagged [applicationid]

10 questions
5
votes
1 answer

Building Different flavors of a Flutter app with different Application IDs

I have some questions about how to do this correctly - Documentation from the Flutter team on using Flavors is somewhat lacking and to this date the tutorials and articles all seem to be from people who are posting as they learn about it. I…
1
vote
1 answer

How to get applicationId after all suffixes added in android app/build.gradle

How to get applicationId after all suffixes added in android app/build.gradle I tried to use it as below, but the application id is null, we are setting the applicationId to default config from app/build.gradle, I assume it has executed later than…
1'hafs
  • 559
  • 7
  • 25
1
vote
1 answer

Can I use the same AAD AppID for two applications

I created two application instances [Dynamics 365 Finance and Operations] for prod and test environments. I'm now getting the following error. Unable to get the channel information Detail …
1
vote
0 answers

Set custom applicationId depending on flavor combination with Kotlin Gradle for Android

With gradle scripts in groovy it's possible to customize the applicationId or applicationIdSuffix depending on combination of flavors. applicationVariants.all { variant -> def name = variant.getName() if (name.contains("Prod") &&…
yital9
  • 6,544
  • 15
  • 41
  • 54
0
votes
0 answers

Closed Testing in Play store when there is already an app published to production as private app

I have a question regarding the play store console. I have a private app that is already in production in the private store with its unique ID, say "com.android.Y". Now I want to upload a new APK with a different Application ID "com.android.X" in…
khalAl
  • 1
0
votes
1 answer

How to resolve "AdMob APPLICATION_ID not present in the manifest" error without creating an AdMob account?

I am currently using the com.google.android.gms:play-services-ads library in my Android application. However, the application does not display any AdMob ads; it simply uses this library to retrieve the Google Advertising ID from ads delivered…
Mikhail
  • 133
  • 2
  • 9
0
votes
1 answer

Why are my Admob Ads Not Showing in my Live Android App

I just released a game to the Google Plat store but my Admob Ads are not showing. Some easy answers: My target SDK is 33, and my complileSDK is also 33 My app has been live since in the Play Store since Friday 2/3/23 Yes - The Test Ads show when I…
Jason W
  • 77
  • 8
0
votes
2 answers

Android: Is using the same applicationId for multiple stores a good practice?

I am setting up different app flavors for my Android app in order to generate different app versions for different app stores. Now, I am wondering whether I should better use the same applicationId for all stores, or whether I should always use a…
0
votes
1 answer

What is the difference between Package name & App Package Name?

I'm practising Android Program with a book and it says if the package name is same, android understand it's same app even if the project is different. so, I changed it with Refactor. and it also says if you want to change app package name too, then…
0
votes
1 answer

Use of Application ID URI in Azure Active Directory app

I have an Azure app service X(which has an ASP.NET web api project published to it) that I have configured with Y AAD app thru Advanced Authentication(using Y's client id in it). Now I also have another Z AAD app, which I want to use in OAuth 2.0…