bundle

iPhone iAd: "no qualified ads found for this request"

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...

Ipad xcode plist problem

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...

MissingResourceException - Can't find bundle for base name

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...

Image in bundle not found using NSBundle

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...

How to add reference to .propeties file in .classpath

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...

onActivityResult Intent data not correct

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...

Developing apps for camera roll access

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 ...

'Bundle install' freezes when fetching source index

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? ...

What the meaning of [NSBundle mainBundle] in iPhone?

RootViewController *rvController = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:[NSBundle mainBundle]]; sometimes i see it use nil ,i dont know what exactly it use for? ...

Serializing Android Bundle for network and/or persistent storage?

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...

OSGi bind object to JNDI in Glassfish

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.) ...

Can't access .mp4 files in resource folder iphone xcode

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. ...

Sinatra, Bundler and BUNDLE_PATH confusion

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 ...

Can I change the bundle ID of an existing app, already in App Store?

I'm pushing out an update for an app. I wonder if I can change the bundle ID. If not, what are my options? ...

Starting OSGi bundle

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 or crossed out?

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 ...

Appstore Uploading issue

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...

Passing A Bundle From A Running Thread To An Activity Launched By An Intent From Within It- Android

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...

Problem in implementing Parcelable containing other Parcelable

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(); ...

Access resources in another osgi bundle?

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. ...