Hello,
I have a problem with iAd. I have two apps: let's call them AAA and BBB.
AAA is a new application which is "Waiting for upload" with iAd enabled.
BBB is an existing application which I want to update and is "Waiting for upload" too, with iAd enabled.
iAd in AAA works just fine. In BBB it shows this error in the console:
Error Do...
Hey guys
I'm having a problem with my plist file. Maybe you will be able to figure out the solution.
I made a project for ipad, everything is working well on the ipad simulator, absolutely no problem.
Now I decided to test it on an ipad device. Therefore I modified the "Bundle Identifier" in the plist which was by default "com.yourcomp...
I know that there are a lot of questions and answers exactly about this error on stackoverflow and other forums. But I still can not find the solution...
For speed reasons I have one utility class which loads all static data maps (for example months) depending on locale provided.
So this utility class looks something like this:
public...
Hey internets!
So here's the deal:
I have an image in the Resources folder of custom framework that I use as a default for classes in the framework. However, when I create these classes in projects that link against my framework they fail saying they can't find the image. I'm guessing the NSBundle's +mainBundle does not search the cor...
Hi, i've got exception, while running java class from Eclipse:
java.util.MissingResourceException: Can't find bundle for base name dbconfig, locale en_US
Seems that my dbconfig.properties file isn't in classpath.
dbconfig.properties located in root of the project.
Eclipse is ran with VM arguments(in Run configurations-->Arguments menu...
Hi,
I'm venturing into startActivityForResult for the first time and I'm running into a problem.
Activity A (ActivityMyList) launches Activity B (ActivityQuickList) waiting for a result:
Intent intentLaunchQuickList = new Intent(ActivityMyList.this, ActivityQuickList.class);
startActivityForResult(intentLaunchQuickList, REQUEST_QUICKL...
Is anyone developing anything with this?
I'm concerned if I use images/videos from the camera roll without saving to the bundle that if the user messes with their image library all the album creation and fancy indexing (as a generic example) of the images will end up with missing media from said albums etc.
Is it practical to save to ...
I'm trying to install MongoDB in Rails 3 but when I'm trying to run 'bundle install', it freezes in "Fetching source index...". I tried with rubygems.org and gemcutter.org and both of them freeze.
Any ideas how to make it work?
...
RootViewController *rvController = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:[NSBundle mainBundle]];
sometimes i see it use nil ,i dont know what exactly it use for?
...
Hello. I'm in need to serializing a comprehensive application (game) state to be transmitted over a network or saved to disk and retrieved at a later time.
Bundles, of course, are used to save/restore states in several use cases, so using them would be ideal. However, for some reason, Bundle isn't serializable.
Searching for a solution...
New to OSGi and Glassfish. I have an OSGi bundle written that creates a non-serializable manager object that I would like to expose via JNDI so that my web applications can utilize it. (Previously with JBoss I utilized org.jboss.naming.NonSerializableFactory to do this, but I can't seem to find any analogous approach with Glassfish.)
...
I have a file called fireFinalRotate.mp4, it's in the XCode project folder (both in XCode and in finder). For some reason
NSString *path = [[NSBundle mainBundle] pathForResource:@"fireFinalRotate" ofType:@".mp4"];
returns a nil. Any thought? I'm baffled. Is it because it's a movie file? That code's in viewDidLoad.
...
I am having trouble configuring Sinatra to use Bundler. I am confused as to where Gems should be being installed? I've read both this question and this documentation.
My Gemfile looks like:
source "http://rubygems.org"
gem "sinatra"
gem "amazon-ec2"
My config.ru looks like:
require "rubygems"
require "bundler"
Bundler.setup
require ...
I'm pushing out an update for an app. I wonder if I can change the bundle ID. If not, what are my options?
...
I try to run OSGi plug in in Eclipse. It is empty bundle, but eclipse always send me errors
There are my console messages
http://pastebin.com/dqQfpQhd
What is wrong?
...
Why is my application bundle sometimes missing its icon and/or have this "cancel" symbol over it?
I have looked at the .plist file and the icon path and icon exist and are correct. If I right click the bundle and click Get Info, the icon shows up in the 'preview' section.
This happened after I moved around some code in my qmake file ...
I have set the base SDK to iPhone Device 4.0 and the deployment target to iphone OS 3.0 in the "Targets info" section as well as the "Projects info" section found under the "Groups and files" section.All the certificates and mobileprovision files matches exactly.When i try to upload in iTunes using "Application loader".It's showing me t...
I have a running game thread (lets call it 'A') that will call a new activity to start from within it ('B'). The game thread object itself is declared and run from another activity 'C' though so how can I pass a Bundle from 'A' to 'B'? An intent is used in 'A' to launch 'B' but would a different method be applicable?
I cannot just creat...
I'm implementing Parcelable class that has another Parcelable insde.
In OuterParcelable class:
@Override
public void writeToParcel(Parcel dest, int flags) {
Bundle tmp = new Bundle();
tmp.putParcelable("innerParcelable", mParcelable);
dest.writeBundle(tmp);
and then:
public OuterParcelable(Parcel parcel) {
super();
...
I have created two OSGI bundles A and B using the eclipse Plug-in project wizard (using eclipse Helios).
In the manifest file of bundle B I have added bundle A as a dependency. Further I have exported the packages in A so they are visible for B. I also have a .properties file in bundle A that I would like to make visible for bundle B. ...