Questions tagged [build-target]
21 questions
8
votes
4 answers
Adding Google maps api v2 to an existing project
I'm developing an Android App to incorporate the google maps api in a separate activity. But when I read tutorials it states the build target must be set to google api at project creation. My question is it possible to add the map to an existing…

Brian Var
- 6,029
- 25
- 114
- 212
7
votes
1 answer
cmake project build only one specific executable (and its dependencies)
I have a CMake Project with roughly this structure:
.
|-- library1
| |-- CMakeLists.txt
|-- library2
| |-- CMakeLists.txt
|-- executables
| |-- CMakeLists.txt
I generate two executables in the folder named executables. I wonder if it was…

HFinch
- 534
- 1
- 7
- 20
6
votes
3 answers
What impact does the Android build target have on the final APK?
My question popped up a very similar question, this one. But the accepted answer (the single one) points to another question, this one, which doesn't really answer the original question.
The Android documentation states:
The Build Target specifies…

rfgamaral
- 16,546
- 57
- 163
- 275
2
votes
0 answers
Show which build targets will be rebuilt if a specific file is updated
I have a large legacy C++ project whose build process drags in most of the build targets when individual files are updated, and consequently needlessly results in long build times.
To address this problem, I was looking for a way to check what build…

RAM
- 2,257
- 2
- 19
- 41
2
votes
0 answers
Netbeans, Ant and nesting build directories
I am having a problem with an Ant project in Netbeans 7.4 . When building a certain web app that i had to create via importing it from a WAR into Netbeans it keeps nesting the output directories in the build directory deeper and deeper.
It happens…

user3118785
- 21
- 1
2
votes
0 answers
what's the relationship between android build target, the real device os version, the AVD target?
I'm really getting confused by the 3 things. Although i found some threads discussing about these things. But none of them can make it super clear for me to understand what's really going on.
what does it mean by setting android build target in…

Aaron Shen
- 8,124
- 10
- 44
- 86
1
vote
0 answers
How to check asset bundle's target platform?
I have a database which contains asset bundles for my game which are built for both android and ios.
Sometimes, i mistakenly put ios asset bundle into android database or vice versa. I want to get notified in Unity if i make this mistake.
Is it…

ademakyazici
- 11
- 2
1
vote
1 answer
How can I propagate CXX_STANDARD and related properties to dependent targets?
When you set a CMake target's property, you can make it PUBLIC, INTERFACE or PUBLIC. Yet - the CMake manual page on the CXX_STANDARD property does not indicate the ability to specify one of these. Specifically, suppose I…

einpoklum
- 118,144
- 57
- 340
- 684
1
vote
2 answers
How to solve import org.apache.http.util cannot be resolved?
I changed the project build target in MainActivity- CordovaLib from android 5.1.1 to android 7.1.1. After changing the build target it shows an error in the src/CordovaResourceApi.java that the import org.apache.http.util cannot be resolved.…

MUlya G
- 37
- 3
1
vote
0 answers
Attach Header File To Target On Xcode
Im writing an Xcode project, and I want to have to different targets in the project.
The difference between the targets is that in one of my .c files I include
#include "header_file.h"
I want to write two different "header_file.h"'s and to…

talw
- 61
- 2
1
vote
2 answers
Xcode 6.4: OS X and iOS Targets, Cordova
So I just installed Xcode 6.4 to start some development on my new Mac, and after creating an empty iOS project, I see the message "No OS X or iOS Targets Found". I also see a message under my project folder: "base SDK missing. But I was under the…

prmph
- 7,616
- 11
- 37
- 46
1
vote
4 answers
API Level 11 min is 9, what can I do to fix this
One of my classes has many errors because API level 11 (min is 9) is it better to fix it or change min. If so how do I fix it or how do I change min Im very new to this, also what is a good source to learn from with new-ish code
package…

lramos15
- 491
- 2
- 4
- 8
1
vote
3 answers
Android target SDK version and phones
So I wrote an Android app a while ago, and I'm trying to update it. I'm wanting to build in code sections where if the phone they're on is less than 3.0, do something one way, otherwise do it another way.
My build target is set to 11 in the…

joshkendrick
- 3,497
- 8
- 38
- 52
0
votes
1 answer
Show which files will be rebuilt when building a target in a cmake project
I have a huge legacy project which uses cmake as its build system which takes an awful time to run full and partial builds. The long build times are mainly due to a mix of lack of modularity and dragging in too many unnecessary include headers into…

RAM
- 2,257
- 2
- 19
- 41
0
votes
1 answer
How to Use Build Targets In Xcode
I'm quite familiar with the workings of Xcode, except for Build Targets.
I need to add a special Build Target for handling notifications, containing a class used to process the notifications (call this Class B). Inside of this target, I access a…

The Swift Coder
- 390
- 3
- 13