Questions tagged [buildconfig]

A class created automatically by the Android Development Tools (ADT) plugin for Eclipse, with information about how the project build was configured.

94 questions
1
vote
1 answer

Grails plugin dependencies not available in application

Created a plugin in eclipse GGTS using Grails 2.3.8; standard plugin, no changes whatsoever, except for the following dependency (rabbitmq): //BuildConfig (plugin) plugins { compile(":rabbitmq:1.0.0") build(":release:3.0.1", …
raffian
  • 31,267
  • 26
  • 103
  • 174
1
vote
1 answer

Unity project exported to android project exception (Multiple dex files define Lcom/qualcomm/QCARUnityPlayer/BuildConfig)

I exported the project from unity 4D to Android project but when i run it iget this error Unable to execute dex: Multiple dex files define Lcom/qualcomm/QCARUnityPlayer/BuildConfig; Conversion to Dalvik format failed: Unable to execute dex:…
X.Otano
  • 2,079
  • 1
  • 22
  • 40
1
vote
2 answers

Maven + android R.java and BuildConfig.java duplicate class

I searched for the solution on the internet and did everything which is mentioned but nothing did solve my problem. Here is my pom.xml
Mustafa Güven
  • 15,526
  • 11
  • 63
  • 83
1
vote
1 answer

Grails use config.properties value into BuildConfig.groovy

I have a config.properties file under conf directory. and have a entry in the above file like this: grails.tomcat.version = 2.2.4. How can I use this value in BuildConfig.groovy file? Suppose: plugins = { build ":tomcat:{here i want to use the…
Pritom
  • 1,294
  • 8
  • 19
  • 37
1
vote
0 answers

Custom Plugin dependencies.groovy is ignored

The Problem: I've built a custom grails plugin, defined my dependencies on other plugins via BuildConfig.groovy and packaged my plugin into a zip file. I then added the zip to my local maven repository and all is well. The file dependencies.groovy…
rittinger
  • 41
  • 2
1
vote
4 answers

Installing Nimble for Grails

I came across Nimble yesterday, but couldn't get past Step 1, configuring BuildConfig.groovy to find the Nimble's remote repository. My BuildConfig.groovy file is one line:…
Matt Norris
  • 8,596
  • 14
  • 59
  • 90
1
vote
2 answers

Grails 2.0 depedencies NoClassDefFound issue

I've got a problem with NoClassDefFound exception in Grails 2.0 when I tried to use library from external JAR. I've checked that declared JARs are inside of created WAR, also grials dependecies-report do not marks any issues with that. Locally…
Simek
  • 347
  • 2
  • 15
0
votes
0 answers

Build alongside with configmap change causes errors when using helm

My team recently started using helm to manage our Openshift projects and we encountered a problem. Our helm chart states deploymentconfig triggers to be imageChange and configChange and same for a buildConfig now when we have a feature that needs a…
o bd
  • 21
  • 7
0
votes
0 answers

dpkg error when running sudo apt-get install build-essential

I tried to run this command in my terminal: sudo apt-get install build-essential and keep getting this error: perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL =…
Zachary
  • 13
  • 3
0
votes
2 answers

How to supply multiple ImagePullSecrets to an s2i build in OpenShift

I'm trying to build an OCI image using the s2i mechanism of OpenShift. The Dockerfile is multi-stage, both base images are hosted inside two different, only privately accessible docker repositories. My BuildConfig looks like this: apiVersion:…
VeryDogeWow
  • 142
  • 7
0
votes
1 answer

Is there a way to generate the documentation of a buildConfigField in gradle

I have in my gradle various buildConfigFields and I would like to generate the JavaDoc for one of those in the BuildConfig class. I already have a comment in gradle buildConfigField 'Integer', 'BACKGROUND_COUNTDOWN', '30 * 60 * 1000 - 10000' // 29…
Cliff Burton
  • 3,414
  • 20
  • 33
  • 47
0
votes
1 answer

error: cannot find symbol variable VERSION_CODE in android studio

error: cannot find symbol variable BuildConfig.VERSION_CODE in android studio symbol: variable VERSION_CODE location: class BuildConfig error occured when i updated my androidstudio to latest version with gradle build version to…
Suresh B B
  • 1,387
  • 11
  • 13
0
votes
0 answers

Kotlin code hard copy dirty BuildConfig Java members

An Android application developed basically using Kotlin references the members in the intermediate generated BuildConfig.java in the code. import com.dirtyinfo.BuildConfig; private fun checkVersionInfo(): Int { val verCode =…
progquester
  • 1,228
  • 14
  • 23
0
votes
0 answers

After decompile the apk BuildConfig.java file values are accessible

I have created .env file in react native and from native side i'm able access the BuildConfig.KEY_NAME in MainApplication.java file But security team hS decompiled the app/APK using MobSF and can able to access the all keys from the BuildConfig.Java…
0
votes
0 answers

DeepLinkDispatch with different modules (libraries)

I'm trying to add DeepLinkDispatch library (by airbnb) in my project in order to handle deeplinks. The project has different modules and some links needs to be handled by Activity's in this modules. As I have different flavors I would like to define…