Bundles are a group of resources.
Questions tagged [bundles]
179 questions
0
votes
1 answer
Downloadable data resources / content for iphone / ipod applications
I am working on an application that uses quite a large amount of content (images and text). I would like to be able to provide additional content bundles to those - and only to those - who already have my app on their device. E.g., if my app were a…
Sasha
0
votes
1 answer
Keeping a C Command line app running in Mac Application Bundle
I'm in the process of writing a compiled C application which uses the system() function to launch a Java .jar file:
int main() {
system("java -jar MyJar.jar");
return 0;
}
I successfully wrapped this up in a clickable app bundle, however, when…

Scott
- 324
- 2
- 4
- 15
0
votes
1 answer
Maintaining data global state for multiple button clicks
I have an Inspection Form for an Android tablet that has 5 activity pages and approximately 30 button clicks. Each button click generates a TextView value which are then compiled at the end of the application to create a report.
My issue is this: …
0
votes
1 answer
Symfony2 Best Practices - Proper Organization of Bundles that Require Users
I've been working with Symfony2 for a few weeks, and loving it.
However, I am a bit confused with an aspect. Say I have two bundles, which each have a "User" entity, which stores information about that user.
However, I want to be able to do actual…

samanime
- 25,408
- 15
- 90
- 139
0
votes
2 answers
symfony2 doctrine with 2 bundles
I made a relationship OnetoMany between the entity User and the entity Contract.
(A user can have more than one Contract)
I have 2 bundles one for extending fosuser (Userbundle) and one with all the other ToolsBundle.
So, I have a list of user with…

RaFF
- 53
- 9
0
votes
1 answer
Symfony2: Bundle Structure
My current bundle structure is like this:
Acme/CoreBundle
Acme/ImageBundle
Acme/SecurityBundle
Acme/UserBundle
Acme/GroupBundle
The CoreBundle holds the edge functionalities like home, contact and imprint.
Now I want to merge the ImageBundle (and…

bodokaiser
- 15,122
- 22
- 97
- 140
0
votes
1 answer
Symfony 2: Disable Monolog
Is it possible to disable core bundles of Symfony 2, such as the Monolog logger?
I am working on an application which doesn't have many fancy requirements except that it should be ultra fast and as much lightweight as possible. I guess Symfony 2 is…

Tony Bogdanov
- 7,436
- 10
- 49
- 80
0
votes
1 answer
Perform action on service while bundle registration in app
I want to perform action on service (Menu service) while bundle registers itself in app.
Symfony register all bundles on every request, so there should be an option to perform some actions as that time.
Any suggestions?

Maciej Pyszyński
- 9,266
- 3
- 25
- 28
-1
votes
1 answer
Nuxeo Bundles roles
I'm new to Nuxeo plateforme and i want to know what is the role of every bundle. in another way, how to know the the Java class of a specific object to modify or where put my functions?
-1
votes
1 answer
How to implement an interface in a different OSGi bundle?
I have literally just started and I think this is such a basic question that I can't even find anything online about it but I can't for the life of me figure this out.
I have two seperate bundles, one an API and one a Service bundle. In a package in…

Jake B
- 27
- 7
-1
votes
1 answer
Symfony2: one bundle for backoffice and one for the public website
I'm developing a website which has a public part and a backoffice part. My intention is to have this bundle structure:
Acme/CoreBundle: common entities, repositories, services for both public and private
Acme/BackofficeBundle: controllers, forms,…

petekaner
- 8,071
- 5
- 29
- 52
-2
votes
2 answers
How can i pass whole JSON array from main activity to other activity?
I want full JSON data from an API to show in other activity. Tell me how I can do that.
-2
votes
1 answer
Symfony4 - how to deal with functionality
I'm new to Symfony4 and I want your advices guys to help me on this.
Let's say I want to create a page like facebook, with posts, comments, like action on the same page. I'm wondering how I should do to be able to enable/disable a functionality…

Solber
- 147
- 2
- 9
-5
votes
1 answer
Some difficulties to understand a namesapace and his use
I haves some difficulties to understand this namespace's use :
namespace Utilisateurs\UtilisateursBundle\Entity;
use FOS\UserBundle\Entity\User as BaseUser;
I have found a namespace called FOS (in…

user3553866
- 316
- 1
- 3
- 15