Aspell-0.60 Binary and Aspell-0.50 Dict Compatibility

I recently updated aspell-de, aspell-fr, aspell-el dictionaries, all of which are in 0.50 edition. I didn't update the aspell binary to 0.60 edition as I thought there would be a conflict. Now the relation between the binary and the dictionaries is broken. I realized that the dictionaries although of 0.50 edition they are packed in a 0.60 directory (/usr/lib/aspell-0.60).
My question is if I update the binary to 0.60 will it work with the 0.50 dictionaries?
From the aspell.net site I quote
Dictionaries marked as "0.50" are available for Aspell 0.50. Ones marked as "0.60" are available for Aspell 0.60 only.
cheers!

The only trouble with aspell dictionaries (unless this version change is really something more, like change of format etc. - AFAIK in this case it isn't) is that during the build process it seeks for a current version of aspell package (by running some commands) and this version number is then added to subdirectory name. That's why dictionaries built against aspell 0.5 will not work if you upgrade only aspell to 0.6. I dunno why it's designed this way but "recompiling" a dictionary package (after an upgrade of aspell to 0.6) using abs will upgrade it to 0.6.

Similar Messages

  • When I click on a .docx document Firefox thinks it is binary and saves but does not open with MS Word - but it knows .doc is MS Word and opens it automatically

    When I click on a .docx document Firefox thinks it is binary and saves it but does not open with MS Word. But it knows .doc is MS Word and opens it automatically (this is the behavior I would like with .docx docs.) In preferences -- applications - it is just says "content type" is "microsoft word document" but doesn't give a way to choose .docx specifically. Is there another way to do this?
    Iam running Mac OS X 10.6.4 and Firefox 3.6.8 with MS Word Mac 2008

    Hi ,
    According to your description, my understanding is that you could not edit documents with Office client application in SharePoint 2010.
    Let’s do a troubleshooting about this issue:
    1. Make sure that you have installed Office application on your machine.
    2. Which explorer did you use for your SharePoint. Please test it with IE 10 32-bit, compare the result.
    3. Please try to reset IE, compare the result.
    4. Add your SharePoint site into Trusted site on your IE options.
    5. Make sure all add-ons related to SharePoint are enable, special for SharePoint OpenDocument Class and SharePointOpenXMLDocuments.
    6. Since you used OWA for your SharePoint site, please try to disable OWA, then open documents with client application, compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Oracle binary and control files

    Hi All,
    I want know whether the oracle binary and control files are they related in anyway.
    I have my physical files on a SAN storage and my oracle binary files on a local disk.
    In case if I delete my oracle binaries and restore it from a backup, will I be able to start my database without any issues.
    Since all my oracle datafiles,controlfiles and redofiles are located in SAN storage.

    Oracle binaries and control files are related in some way because Oracle version is recorded in control files:
    oerr ora 201
    00201, 00000, "control file version %s incompatible with ORACLE version %s"
    // *Cause:  The control file was created by incompatible software.
    // *Action: Either restart with a compatible software release or use
    //          CREATE CONTROLFILE to create a new control file that is
    //          compatible with this release.When restoring Oracle binaries on UNIX you should take care about setuid bits on oracle executable to avoid local connection issues by non oracle Unix accounts.

  • Here's an animated binary and octal counter

    I was inspired by the "Milliseconds.fx" code example in the NetBeans pack and coded this animated counter. I've done binary and octal so far, but I'm going to work on abstracting a base class before doing decimal and hex. I know it's not all elegant and perfect, but it was a lot of fun.
    * Main.fx
    * Created on Jan 7, 2009, 6:22:07 PM
    import javafx.animation.Interpolator;
    import javafx.animation.Timeline;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.VBox;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;
    * @author Sidney Harrell
    var time: Integer on replace OldValue{
        binaryCounter.flip(time);
        octalCounter.flip(time);
    def binaryCounter = BinaryCounter{};
    def octalCounter = OctalCounter{};
    def timer = Timeline {
        keyFrames: [
            at (0s) {time => 0},
            at (6000s) {time => 100000 tween Interpolator.LINEAR }
    class OctalCounter extends CustomNode {
        def string = ["0", "1", "2", "3", "4", "5", "6", "7"];
        var digits: String[];
        var octalPlaceValues: Integer[] = [
            134217728
            16777216, 2097152
            262144,32768
            4096,512, 64
            8, 1];
        var digitNodes: Text[];
        var temp: Integer;
        public function flip(time:Integer) {
            if (time > octalPlaceValues[0] * 8) {
                temp=time mod octalPlaceValues[0] * 8;
            } else {
                temp=time;
            for (i in [0..9]) {
                if ((temp != 0)and(temp / octalPlaceValues[i] != 0)) {
                    digits[i] = string[temp / octalPlaceValues];
    temp = temp - octalPlaceValues[i]*(temp/octalPlaceValues[i]);
    } else {
    digits[i] = string[0];
    public override function create(): Node {
    for( i in [0..9]) {
    insert string[0] into digits;
    for (i in [0..9]) {
    insert Text {
    font: Font {
    size: 24
    x: 10,
    y: 30
    content: bind digits[i]
    } into digitNodes;
    return Group {
    content: HBox{
    spacing: 10
    content:[
    digitNodes
    Stage {
    title: "Binary Counter"
    width: 450
    height: 120
    scene: Scene {
    content: VBox {
    spacing: 10;
    content: [
    binaryCounter
    octalCounter
    timer.play();
    class BinaryCounter extends CustomNode {
    def string = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
    "A", "B", "C", "D", "E", "F"
    var digits: String[];
    var binaryPlaceValues: Integer[] = [16384 * 2 * 2, 16384 * 2, 16384, 8192, 4096, 2048, 1024,
    512, 256, 128, 64, 32, 16, 8, 4, 2, 1];
    var digitNodes: Text[];
    var temp: Integer;
    public function flip(time:Integer) {
    if (time > binaryPlaceValues[0] * 2) {
    temp=time mod binaryPlaceValues[0] * 2;
    } else {
    temp=time;
    for (i in [0..16]) {
    if ((temp != 0)and(temp / binaryPlaceValues[i] != 0)) {
    digits[i] = string[
    temp / binaryPlaceValues[i]];
    temp = temp - binaryPlaceValues[i];
    } else {
    digits[i] = string[0];
    public override function create(): Node {
    for( i in [0..16]) {
    insert string[0] into digits;
    for (i in [0..16]) {
    insert Text {
    font: Font {
    size: 24
    x: 10,
    y: 30
    content: bind digits[i]
    } into digitNodes;
    return Group {
    content: HBox{
    spacing: 10
    content:[
    digitNodes

    As promised, completed with all four major bases.
    import javafx.animation.Interpolator;
    import javafx.animation.Timeline;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.VBox;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;
    * @author Sidney Harrell
    def binaryCounter = BinaryCounter{};
    def octalCounter = OctalCounter{};
    def decimalCounter = DecimalCounter{};
    def hexCounter = HexCounter{};
    var time: Integer on replace OldValue{
        binaryCounter.flip(time);
        octalCounter.flip(time);
        decimalCounter.flip(time);
        hexCounter.flip(time);
    def timer = Timeline {
        keyFrames: [
            at (0s) {time => 0},
            at (6000s) {time => 100000 tween Interpolator.LINEAR }
    Stage {
        title: "Counters"
        width: 530
        height: 200
        scene: Scene {
            content: VBox {
                spacing: 10;
                content: [
                    binaryCounter
                    octalCounter
                    decimalCounter
                    hexCounter
    timer.play();
    abstract class Counter extends CustomNode {
        def digits = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
            "A", "B", "C", "D", "E", "F"];
        var placeValues: Integer[];
        var representation: String[];
        var digitNodes: Text[];
        var temp: Integer;
        var base: Integer;
        var places: Integer;
        public function flip(time:Integer) {
            if (time > placeValues[0] * base) {
                temp=time mod placeValues[0] * base;
            } else {
                temp=time;
            for (i in [0..places]) {
                if ((temp != 0)and(temp / placeValues[i] != 0)) {
                    representation[i] = digits[temp / placeValues];
    temp = temp - placeValues[i]*(temp/placeValues[i]);
    } else {
    representation[i] = digits[0];
    class OctalCounter extends Counter {
    public override function create(): Node {
    base = 8;
    places = 9;
    placeValues = [134217728, 16777216, 2097152, 262144, 32768,
    4096, 512, 64, 8, 1];
    for( i in [0..places]) {insert digits[0] into representation;};
    for (i in [0..6]) {insert Text {font: Font {size: 24}; x: 10, y: 30 content: digits[0]} into digitNodes;};
    for (i in [0..places]) {insert Text {font: Font {size: 24}; x: 10, y: 30 content: bind representation[i]} into digitNodes;};
    insert Text {font: Font {size: 24}; x: 10, y: 30 content: "octal"} into digitNodes;
    return Group {content: HBox{spacing: 10 content:[digitNodes];}};
    class BinaryCounter extends Counter {
    public override function create(): Node {
    base = 2;
    places = 16;
    placeValues = [16384 * 2 * 2, 16384 * 2, 16384, 8192, 4096, 2048, 1024,
    512, 256, 128, 64, 32, 16, 8, 4, 2, 1];
    for( i in [0..places]) {insert digits[0] into representation;};
    for (i in [0..places]) {insert Text {font: Font {size: 24}; x: 10, y: 30 content: bind representation[i]} into digitNodes;};
    insert Text {font: Font {size: 24}; x: 10, y: 30 content: "binary"} into digitNodes;
    return Group {content: HBox{spacing: 10 content:[digitNodes];}};
    class DecimalCounter extends Counter {
    public override function create(): Node {
    base = 10;
    places = 8;
    placeValues = [100000000, 10000000, 1000000, 100000, 10000, 1000,
    100, 10, 1];
    for( i in [0..places]) {insert digits[0] into representation;};
    for (i in [0..7]) {insert Text {font: Font {size: 24}; x: 10, y: 30 content: digits[0]} into digitNodes;};
    for (i in [0..places]) {insert Text {font: Font {size: 24}; x: 10, y: 30 content: bind representation[i]} into digitNodes;};
    insert Text {font: Font {size: 24}; x: 10, y: 30 content: "decimal"} into digitNodes;
    return Group {content: HBox{spacing: 10 content:[digitNodes];}};
    class HexCounter extends Counter {
    public override function create(): Node {
    base = 16;
    places = 6;
    placeValues = [16777216, 1048576, 65536, 4096, 256, 16, 1];
    for( i in [0..places]) {insert digits[0] into representation;};
    for (i in [0..9]) {insert Text {font: Font {size: 24}; x: 10, y: 30 content: digits[0]} into digitNodes;};
    for (i in [0..places]) {insert Text {font: Font {size: 24}; x: 10, y: 30 content: bind representation[i]} into digitNodes;};
    insert Text {font: Font {size: 24}; x: 10, y: 30 content: "hex"} into digitNodes;
    return Group {content: HBox{spacing: 10 content:[digitNodes];}}
    Edited by: sidney.harrell on Jan 12, 2009 7:49 PM
    added missing closing brace                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Binary and btree index

    hi all,
    i want to know the exact difference between binary and btree index and how it is useful in searching

    And if you want to know how btree indexes are implemented in Oracle then you can look at [url http://gplivna.blogspot.com/2007/03/where-bad-performance-starts-my.html]my blog post containing quite many urls pointing to resources about btree indexes, bitmap indexes etc etc by such authors like Jonathan Lewis, Julian Dyke, Tim Gorman, Richard Foote.
    Gints Plivna
    http://www.gplivna.eu

  • How can I convert a 680x480x2 array of values into binary and then joining adjacent elements to make a 640x480 array?

    I am obtaining data from a camera and getting 10-bit data in Labview. I want to convert the element values to binary and then join adjacent elements to create an array half the size of the original. 

    Hi cowboy,
    well 640×480 is not exactly half of 680×480×2...
    - You have to read the specs of your camera. Then you should know how to combine the values.
    - When you get 10bit values you probably need I16 datatype to store the values. Unless you also decrease the color resolution to 8 bit you are still stuck to 640×480×2 byte per image...
    - To join numbers you should have a look at the numerics->data manipulation function palette
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Mac Pro (Early 2008) and HP LP3065 30" display compatibility issue

    Hello!
    Is there FIX / Workaround to Mac Pro (Early 2008) and HP LP3065 30" display compatibility issue ? ( +w/ ATI Radeon HD 2600 XT display adapter+ ). Its really annoying problem :-/.
    Main problem is when i start my Mac, my 30" HP screen dosen't wake up, it always on suspend mode. Sometimes it wakes up on the 3rd try orso, sometimes it ruins my motivation, ideas and i give up (talk about inspiration killer). If i connect PC Laptop to that screen, sreen wakes up straight away. ATI says display adapters "drivers" are included on the OSX install. Great. Weird thing is i didn't recognize this problem at all 6-8 months ago, so i thought my system is fine. So i can't return my HP screen anymore.
    My choices are to buy another 30" screen or buy different display adapter; there's two choices atm i think;
    *-ATI Radeon HD 3870 512MB PCI-E for Mac Pro (~200€)*
    *-EVGA GeForce GTX 285 Mac Edition 1GB (~500€)* (this one has seperate OSX drivers).
    _Can anyone confirm if those display adapters work with HP 3065 30" screen ?._
    http://forums.macrumors.com/showthread.php?t=687624
    http://discussions.apple.com/message.jspa?messageID=9388978
    http://discussions.apple.com/thread.jspa?threadID=1794155&tstart=60
    Br,
    Petri

    Thanks for all information. I haven't been Mac user very long . I just want to get rid of my annoying problem. I'll do music composing mainly on my Mac Pro. So, it dosen't really matter what display card i'm using, i want to just make sure it works with HP 3065 .

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

  • I am looking to make the switch from pc to mac and have been eyeing the MBP 13". I would like to know whether it is fine to add RAM and SSD myself? any compatibility or warranty problems? what brand/type of RAM and SSD is the best fit? thank you.

    i am looking to make the switch from pc to mac and have been eyeing the MBP 13". I would like to know whether it is fine to add RAM and SSD myself? any compatibility or warranty problems? what brand/type of RAM and SSD is the best fit? thank you.

    Chamar wrote:
    I'm possibly wrong here but I suspect opening a brand new MBP to add parts yourself will void the warranty.  It is probably in the small print.  I certainly would not risk it for an expensive Apple product.
    Some (Windows) laptops have easy access to memory and disk slots that do not necessitate taking the complete back cover off.  However, Apple does not make life easy for you.
    However, if you are going for a 'used' machine it is probably worth a try.
    Not possibly, definitely wrong, Ram and Hard Drive are considered user replaceable and will not void the warranty if changed.

  • Loading from a Flat file: Binary and Text File

    Hi,
    Does anyone know what the difference is between loading from a binary file or text file?
    Ramon

    Hi,
    the difference is that text files contain lines (or records) of text and each of these has an end-of-line marker automatically appended to the end of it whenever you indicate that you have reached the end of a line.
    So what happens when we read from a text file is that the end-of-line character for the operating system that we are using gets converted into a low value end-of-string indicator and when we write to a file the appropriate end-of-line character(s) get written when we indicate the end of the line. This makes the reading and writing of text files much easier because the appropriate end-of-line markers are handled for us.
    With a binary file none of these conversions take place. When we read a binary file the end-of-line characters for our operating system will be read into the string and treated no different than any other character. When we write to a binary file the only end-of-line markers that are written will be those that we code into the output ourselves and hence will be exactly as we code it regardless of the operating system that we are running on. This makes it much easier for us when the file does not contain straight text and the end-of-line marker does not separate lines of text but rather appears as part of the non-text data content of the file.

  • Activation - Error:Cannot store binary and a few other NWDI questions.

    Hi all!
    I'm working on the Internet Sales Application (crm/b2b) in CRM 6.0. The work i do is an upgrade from CRM 4 to CRM 6, so I'm new to NWDI.
    I'm following the "ISA50DevExtGuideConcepts21.pdf" (since I haven't found a document for version 6), and have managed to add java extensions and librares successfully. I now work on the web-project and have started an activity to merge changes to stylesheets, and also added own mimes like stylesheets and images (.jpg, .gif). The files where added to the project folder (webContent in crm/isa/web/b2b) and then located and added to DTR through a refresh in NWDS. When I try to activate this activity I get the post-proccesing error in the request log below. This might have been caused by an image file renamed to .bak, although its recoginzed as an image in NWDS.
    Questions:
    1. Any idea what goes wrong? How should I solve this?
    2. Can I check out or remove the activity to correct the problem? How?
    3. I have a few Activities,already activated on the development server that I would like to get rid of. How do I do that?
    4. I have a few Activities that aren't properly named. Is it possible to change the name after activation?
    /Anders
    CBS Request Log
        ===== Processing =====  started at 2009-04-08 15:53:19.110 GMT
            BUILD DCs
                'sap.com/crm/isa/web/b2b' in variant 'default'
                        'war' PP has been changed. Dependent DCs will be re-built.
                    The build was SUCCESSFUL. Archives have been created.
        ===== Processing =====  finished at 2009-04-08 15:54:15.958 GMT and took 56 s 848 ms
        ===== Post-Processing =====
        Waiting for access: 10 ms
        ===== Post-Processing =====  started at 2009-04-08 15:54:15.968 GMT
            Check whether build was successful for all required variants...
                "sap.com/crm/isa/web/b2b" in variant "default"   OK
            STORE activation build results... started at 2009-04-08 15:54:15.972 GMT
                Update DC metadata... started at 2009-04-08 15:54:15.972 GMT
                    'sap.com/crm/isa/web/b2b' DC is CHANGED
                Update DC metadata... finished at 2009-04-08 15:54:16.276 GMT and took 304 ms
                STORE build results... started at 2009-04-08 15:54:16.276 GMT
                ===== Post-Processing =====  finished at 2009-04-08 15:54:17.849 GMT and took 1 s 881 ms
                Change request state from PROCESSING to FAILED
                Error! The following problem(s) occurred  during request processing:
                Error! The following error occurred during request processing:Database Error:Cannot store binary.
         Original Cause: DB2 SQL Error: SQLCODE=-968, SQLSTATE=57011, SQLERRMC=null, DRIVER=3.50.153
            REQUEST PROCESSING finished at 2009-04-08 15:54:17.855 GMT and took 1 m 6 s 42 ms

    I have done some more testing regarding the case with "Database Error:Cannot store binary."
    Unfortunately, the behaviour doesn't seem to be consitent or related to particular files. I had a successful activation with 79 of the files in one folder, but could'n add one single file in a new activity. When i removed one of the 79 files and added another file, one of those not possible to add before, it was successful.
    After this I tried to remove all 79 files again i one activity, and the add the original 79 files in another. The remove was successful while the adding was unsuccessful. All with the same error message in Request log.
    Does anybody have an idea of what is happening here? I don't have a clue.
    /Anders

  • CSV uploaded to the KM is recognized as binary and not as CSV

    Hello,
    I am uploading a csv to the KM but when I try to download it I receive a text file inside the web page instead of a proper CSV.
    By looking at the mime type of this file it is identified as: Binary file (application/octet-stream) one and not as csv.
    Any ideas..?

    Hi Adrian,
    I think you misunderstood...
    The problem is not with the downloaded file, the problem is that inside the web it is opened not inside excel but as a text file, I think it's because that at the KM it is not being recognized as csv but binary therefore the browser is trying to handle with a binary file and not CSV and I see the whole data as one long string inside the web page instead of an excel sheet. The question is why it treated it as a binary even though I have uploaded a CSV? In an XLS it is working OK since the KM recognises it as properly, like this:
    Microsoft Excel worksheet document (application/vnd.ms-excel)
    Message was edited by:
            Roy Cohen

  • About upgrading ios binary and apk android

    Hello, good afternoon everyone.
    I have a number of weekly publications that publish simultaneously on iOS and Android with the same account.
    At the request of my client:
    - Update binary on iOS
    - Change to publications v24 v28
    - To begin to escalate also save the publication (JPG High) now in PDF
    In iOS had no problems, but users Andoid we began to claim that publications are not within the kiosk.
    - I must update the apk in android to fix this issue.?
    - O how the PDF publication can not be displayed correctly in Android?
    - Changed version (v28) of affecting some users or all Android versions 4.0 4.1 4.4
    I would appreciate any response to this problem
    thank you very much
    Sebastian

    Bob, thanks for your response.
    I'll explain better, sorry but my English is bad
    A weekly magazine, with its PRO account, published since more than 1 year, 2 platforms simultaneously on iOS and Android Legacy.
    update
    - The publications were v24 before.
    are now v28
    - Format: JPG High
    PDF now (the option to zoom in Builder is active)
    We ship the new binary to Apple. Approved and is for sale with no hassles.
    But the problem arose in Android.
    Since the upgrade reflected some users who can not see the publication in Kiosk.
    -. Must also update the apk in Android to fix this problem?
    - Or the problem was to change the format to PDF, this does not visualize correctly in Android?
    Sorry, I have not much experience on Android.
    Thank you Bob

  • Binary and icon for submission question

    Hi,
    I have a few days left until i submit my first iphone application.
    In the itunes connect developer documentation, there's a pragraph regarding the icons i should supply.
    In one of the descriptions it says that the 57X57 icon should be supplied with the applicatino binary zip file.
    I'm not sure i understand that.
    Should the zip file contain both the applicatin binary plus the icon ?
    Or it refers to the icon that i put in my bundle resources (and put its name in the info.plist file) ?
    Thanks a lot,
    Kobi.

    Every .app file is a directory that can be viewed by right-clicking on it and selecting "Show Package Contents". Within the Contents/Resources folder of the .app directory you should find either a .icns file (Mac OS X) or an icon.png file (iPhone OS).
    The application's icon file should be included automatically when you build it, assuming
    1. That you have an icon file in you project
    2. You find it listed in Xcode's Groups & Files panel -> Targets -> Copy Bundle Resources list. (If not, just add it).
    So if you submit a compressed version of you .app directory, it will contain the icon image.

Maybe you are looking for

  • Thunderbolt and MINI DP compatibility

    hi... I want to buy an ATLONA AT HD620 http://www.bhphotovideo.com/c/product/810597-REG/Atlona_AT_HD620_HDMI_Mini_Displ ayPort.html necause i want to use my xbox and ps3 on my imac 27" 2011, but it says it uses a MINI DP, and the imac 2011 only has 2

  • MS Office runs slow

    I'm running MS office on tiger and its running very slowly. More slowly infact than on the G4 with the powerpc chip. Any ideas on how to speed it up? thanks

  • Pacman stopped working

    I ran pacman -Sy to upgrade the database - and as usual it worked perfectly. I then ran pacman -Su to upgrade (I do it once a week) and there is nothing. Pacman will not respond to any command. I made no changes. To be sure, I edited /etc/pacman.conf

  • Re: consignment process

    Hi Guru, This is the consignment process. 1. we have purchase 100 Qty from the vendor. that stock comes in to the our stock. from these 100 Qty i have took only 50 Qty. for these qty i have paid excise duty with excise duty against excise invoice num

  • Updating from iPod mini to iPod nano

    Is there anyway anyone knows that I can trade in my 10 month old iPod mini for an iPod nano, I'm willing to pay the difference. Please contact!!!!