LVL Android

H guys,

Have used Flash Builder Burrito to create an application (.apk) and just tried to download in the Android market place.  The Android Market requires the use of LVL, so it will not download.  Have seen some previous posts on this subject but nothing conclusive.

Seems a bit weird to have a development environment which outputs .apks but doesn't have a possibility to hang the LVL.  So strange I can't believe that this is the case.  No one knows the situation with that?

Thank you

Richard

I don't think to check license Android library. There are a lot of apps built with air which have been successfully submitted to the Android market.

Tags: Adobe AIR

Similar Questions

  • Try to solve the 6 number 1 target android game using oracle (sql or pl/sql)

    Gurus and mentors/friends,.

    Today, had little space in my time to work, so I tried to reproduce an android game called "6 numbers between 1-target" in oracle.

    All that I need help from you all is to make more effective/robust and garnish with a little bit of awesomeness (preferable in SQL ? I don't)

    Please note that if you are busy, skip this question.

    ------------------------------------------------------------------------------------------------

    Game goes like this:

    -------------------------

    computer gives you only 6 numbers...

    for example: 50,9,5,8,6,7

    And using mathematics as operators '+','-',' *', ' / ' we need to get a result comparable to 292.  (this number 292 is also given by computer..)

    All that we need is the formula apt for 292 out of these 6 numbers (pouvez/do not use all these numbers) using these operators (you can use them without the restrictions of many times where they are used and also the decimal places are truncated.).

    So solutions can be: 50 * 6 - 8 + 5/9/7, 50 * 6 - 8 or 50 * 6 - 8 + 5/7/9 etc...   (multiple answers are possible, all boiling down giving 292)

    I just tried to write it this way, but its time consuming because levels rise. So I thought that I would be the dice in this forum for the best solution. (or maybe suggestions to improve my solution below)

    ------------------------------------


    create table demo (str varchar2 (100), number of val);

    -----------------------------------


    DECLARE
    l_str VARCHAR2 (100);
    l_result NUMBER;
    BEGIN
    EXECUTE IMMEDIATE 'demo truncate table ';

    WHILE (TRUE) LOOP - I know it's wrong, but it's the game after all and I needed iterations to go until I get to a solution.
    BEGIN
    FOR rec
    IN (WITH operators AS
    (Op SELECT COLUMN_VALUE
    TABLE (sys.odcivarchar2list ('+',)
    '-',
    '*',
    '/'))
    ORDER OF DBMS_RANDOM. VALUE ()),
    t AS
    (SELECT SUBSTR (SYS_CONNECT_BY_PATH (letter, ','), 2))
    Word
    FROM (SELECT LEVEL LVL,
    REGEXP_SUBSTR (str,
    '[^,]+',
    1,
    LEVEL)
    LETTER
    FROM (SELECT '7,8,5,50,9,6' FROM DUAL str) t
    CONNECT BY LEVEL < =.
    REGEXP_COUNT (STR, ',') + 1).
    WHERE = 6
    CONNECT BY NOCYCLE lvl! = lvl PRIOR),
    TT AS
    (SELECT REGEXP_SUBSTR (Word,
    '[^,]*',
    1,
    1)
    col1,
    (SELECT val
    FROM (SELECT val op
    Operators
    ORDER OF DBMS_RANDOM. VALUE ())
    WHERE ROWNUM = 1)
    OP1,
    REGEXP_SUBSTR (Word,
    '[^,]*',
    1,
    3)
    col2,
    (SELECT val
    FROM (SELECT val op
    Operators
    ORDER OF DBMS_RANDOM. VALUE ())
    WHERE ROWNUM = 1)
    OP2,
    REGEXP_SUBSTR (Word,
    '[^,]*',
    1,
    5)
    col3,
    (SELECT val
    FROM (SELECT val op
    Operators
    ORDER OF DBMS_RANDOM. VALUE ())
    WHERE ROWNUM = 1)
    OP3,
    REGEXP_SUBSTR (Word,
    '[^,]*',
    1,
    7)
    COL4,
    (SELECT val
    FROM (SELECT val op
    Operators
    ORDER OF DBMS_RANDOM. VALUE ())
    WHERE ROWNUM = 1)
    OP4,
    REGEXP_SUBSTR (Word,
    '[^,]*',
    1,
    9)
    col5,
    (SELECT val
    FROM (SELECT val op
    Operators
    ORDER OF DBMS_RANDOM. VALUE ())
    WHERE ROWNUM = 1)
    OP5,
    REGEXP_SUBSTR (Word,
    '[^,]*',
    1,
    11)
    col6
    T)
    SELECT col1
    || OP1
    || col2
    || OP2
    || COL3
    || OP3
    || COL4
    || OP4
    || col5
    || OP5
    || col6
    formula
    TT
    ORDER OF DBMS_RANDOM. VALUE ()) LOOP
    EXECUTE IMMEDIATE ' begin: result: = ' | Rec.Formula | '; end; »
    With the HELP OF THE l_result;

    l_str: = rec.formula;

    INSERT INTO demo
    VALUES (rec.formula, TRUNC (l_result));
    -COMMIT;


    END LOOP;
    END;

    IF (l_result = 292) THEN
    EXIT;
    END IF;
    END LOOP;
    END;
    /

    --------------------------------------------------------------------------------------------------

    Thanks in advance!  (even for those who have opened this question )

    See you soon,.

    Manik.

    EDIT: this solution is not all of the possible options. Go here for a shorter, faster, more complete solution.

    Here's a solution that includes parentheses. It follows the rules of "game show" as odie_63 said: the result of an intermediate calculation must be a positive integer, and each integer entry can be used at most once.

    There is some unnecessary parentheses, but they do not change the logic or the defined solution.

    It works in about 70 seconds on my PC.

    WITH input AS (
      select '50,9,8,7,6,5' nums, 292 targ from dual
    ), nums AS (
      select power(2, row_number() over(order by num desc) - 1) bits, num
      FROM (
        SELECT to_number(regexp_substr(nums,'[^,]+',1,ROWNUM)) num
        FROM input
        CONNECT BY to_number(regexp_substr(nums,'[^,]+',1,ROWNUM)) IS NOT NULL
      )
    ), ma_1 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, NULL, num, num, num||NULL, 0 FROM nums
      UNION ALL
      SELECT (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      n.op, n.num,
      decode(n.op,'+', o.cumul_num + n.num, o.cumul_num * n.num),
      o.str || n.op || n.num,
      1
      FROM ma_1 o
      JOIN (
        SELECT * FROM nums,
        (SELECT '*' op FROM dual UNION ALL SELECT '+' FROM dual)
      ) n
      ON nvl(o.op,n.op) = n.op
      AND n.num < o.num
    ), ds_2 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, 0, cumul_num, str, num_parens FROM ma_1
      where bits < 63 or cumul_num = (select targ from input)
      UNION ALL
      SELECT (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op, n.num,
      decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num)
      END,
      o.str || decode(o.op,'+','-','/') || n.num,
      1
      FROM ds_2 o
      JOIN nums n
      ON o.op IS NOT NULL
      and n.num > o.num
      AND bitand(o.BITS, n.BITS) = 0
      AND decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num)
        = trunc(decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num))
      AND decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num) > 0
    ), fmt_3 as (
      SELECT BITS, op, cumul_num num, cumul_num,
      case when num_parens = 1 and bits < 63 then '(' end
        || str ||
        case when num_parens = 1 and bits < 63 then ')' end str,
      num_parens
      FROM ds_2, input
      where bits < 63 or cumul_num = targ
    ), ma_4 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, num, cumul_num, str, num_parens FROM fmt_3
      UNION ALL
      SELECT
      (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op,
      n.num,
      decode(o.op,'*', o.cumul_num + n.num, o.cumul_num * n.num),
      o.str || decode(o.op,'*','+','*') || n.str,
      least(o.num_parens+1, 2)
      FROM ma_4 o
      JOIN fmt_3 n
      on o.num_parens > 0
      and o.op = nvl(n.op,o.op)
      AND n.num < o.num
      and bitand(o.bits, n.bits) = 0
    ), ds_5 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, 0, cumul_num, str, num_parens FROM ma_4
      where bits < 63 or cumul_num = (select targ from input)
      UNION ALL
      SELECT (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op, n.num,
      decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num)
      END,
      o.str || decode(o.op,'*','-','/') || n.str,
      least(o.num_parens+1, 2)
      FROM ds_5 o
      JOIN fmt_3 n
      on o.num_parens > 0
      and o.op = nvl(n.op,o.op)
      AND n.num > o.num
      and bitand(o.bits, n.bits) = 0
      AND decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num)
        = trunc(decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num))
      AND decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num) > 0
    ), fmt_6 as (
      SELECT BITS, op, cumul_num num, cumul_num,
      case when num_parens = 2 and bits < 63 then '(' end
        || str ||
        case when num_parens = 2 and bits < 63 then ')' end str,
      num_parens
      FROM ds_5, input
      where bits < 63 or cumul_num = targ
    ), ma_7 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, num, cumul_num, str, num_parens FROM fmt_6
      UNION ALL
      SELECT
      (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op,
      n.num,
      decode(o.op,'+', o.cumul_num + n.num, o.cumul_num * n.num),
      o.str || o.op || n.str,
      least(o.num_parens+1, 3)
      FROM ma_7 o
      JOIN fmt_6 n
      on o.num_parens > 1
      and n.num_parens != 1
      and o.op = nvl(n.op,o.op)
      AND n.num < o.num
      and bitand(o.bits, n.bits) = 0
    ), ds_8 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, 0, cumul_num, str, num_parens FROM ma_7
      where bits < 63 or cumul_num = (select targ from input)
      UNION ALL
      SELECT (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op, n.num,
      decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num)
      END,
      o.str || decode(o.op,'+','-','/') || n.str,
      least(o.num_parens+1, 3)
      FROM ds_8 o
      JOIN fmt_6 n
      on o.num_parens > 1
      and n.num_parens != 1
      and o.op = nvl(n.op,o.op)
      AND n.num > o.num
      and bitand(o.bits, n.bits) = 0
      AND decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num)
        = trunc(decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num))
      AND decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num) > 0
    ), fmt_9 as (
      SELECT BITS, op, cumul_num num, cumul_num,
      case when num_parens = 3 and bits < 63 then '(' end
        || str ||
        case when num_parens = 3 and bits < 63 then ')' end str,
      num_parens
      FROM ds_8, input
      where bits < 63 or cumul_num = targ
    ), ma_10 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, num, cumul_num, str, num_parens FROM fmt_9
      UNION ALL
      SELECT
      (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op,
      n.num,
      decode(o.op,'*', o.cumul_num + n.num, o.cumul_num * n.num),
      o.str || decode(o.op,'*','+','*') || n.str,
      least(o.num_parens+1, 4)
      FROM ma_10 o
      JOIN fmt_9 n
      on o.num_parens > 2
      and n.num_parens != 2
      and o.op = nvl(n.op,o.op)
      AND n.num < o.num
      and bitand(o.bits, n.bits) = 0
    ), ds_11 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, 0, cumul_num, str, num_parens FROM ma_10
      where bits < 63 or cumul_num = (select targ from input)
      UNION ALL
      SELECT (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op, n.num,
      decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num)
      END,
      o.str || decode(o.op,'*','-','/') || n.str,
      least(o.num_parens+1, 4)
      FROM ds_11 o
      JOIN fmt_9 n
      on o.num_parens > 2
      and n.num_parens != 2
      and o.op = nvl(n.op,o.op)
      AND n.num > o.num
      and bitand(o.bits, n.bits) = 0
      AND decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num)
        = trunc(decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num))
      AND decode(o.op, '*', o.cumul_num - n.num, o.cumul_num / n.num) > 0
    ), fmt_12 as (
      SELECT BITS, op, cumul_num num, cumul_num,
      case when num_parens = 4 and bits < 63 then '(' end
        || str ||
        case when num_parens = 4 and bits < 63 then ')' end str,
      num_parens
      FROM ds_11, input
      where bits < 63 or cumul_num = targ
    ), ma_13 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, num, cumul_num, str, num_parens FROM fmt_12
      UNION ALL
      SELECT
      (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op,
      n.num,
      decode(o.op,'+', o.cumul_num + n.num, o.cumul_num * n.num),
      o.str || o.op || n.str,
      least(o.num_parens+1, 5)
      FROM ma_13 o
      JOIN fmt_12 n
      on o.num_parens > 3
      and n.num_parens != 3
      and o.op = nvl(n.op,o.op)
      AND n.num < o.num
      and bitand(o.bits, n.bits) = 0
    ), ds_14 (BITS, op, num, cumul_num, str, num_parens) AS (
      SELECT BITS, op, 0, cumul_num, str, num_parens FROM ma_13
      where bits < 63 or cumul_num = (select targ from input)
      UNION ALL
      SELECT (o.BITS + n.BITS) - BitAND(o.BITS, n.BITS),
      o.op, n.num,
      decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num)
      END,
      o.str || decode(o.op,'+','-','/') || n.str,
      least(o.num_parens+1, 5)
      FROM ds_14 o
      JOIN fmt_12 n
      on o.num_parens > 3
      and n.num_parens != 3
      and o.op = nvl(n.op,o.op)
      AND n.num > o.num
      and bitand(o.bits, n.bits) = 0
      AND decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num)
        = trunc(decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num))
      AND decode(o.op, '+', o.cumul_num - n.num, o.cumul_num / n.num) > 0
    )
    select str, dbms_aw.eval_number(str) check_result
    from (
      select str from ds_14, input
      where cumul_num = targ
    )
    order by str;
    
    STR CHECK_RESULT
    ((((6*5) + 8) * 9)-50) 292
    ((((8*6) + 9) * 5) + 7) 292
    ((((8*6)-5) * 7)-9) 292
    (((50*5) + 8) * 7/6)-9 292
    (((50*9) + 6) * 5/8) + 7 292
    (((50+8) * 5) + 9-7) 292
    + ((50*5) (7 * 6)) 292
    ((50*6) + 8-7-9) 292
    ((50*6)-8) 292
    ((50 + 6-5-8) * 7)-9 292
    ((50+7) * 5) + 9 + 6-8 292
    ((50 + 8-7) * 6)-5-9 292
    ((50 + 8-9) * 6) + 5-7 292
    ((50 + 9 + 6-8) * 5) + 7 292
    ((50 + 9 + 7-6) * 5)-8 292
    (8 * 6 * 5) + 50 + 9 - 7 292
  • Send SMS with android phone and also using iPad

    I have a (Galaxy Note4) Android phone and an iPad (4th generation, just before the series of 'Air').

    I use a lot of text messaging and really wish I could get my texts on the two devices using the android phone number.  In the past, I used an application called "TextNow" which assigns you a unique number and number synchronization with two devices from the app store from Apple or Google Play. It worked well... I would get all my texts on two fairly transparent devices.

    I also watched Google Hangouts and the possibility of having multiple devices receiving the texts had been "fixed" in a recent update Hangouts. Thus, Hangouts no longer allows multiple devices of different platforms to access the texts on the same number.

    My question is... are at - it application in both the app store and google game that will allow you to send and receive texts using the mobile number rather that having to generate a new number?

    I'm not aware of something that doesn't require the other party to also have the same application, something like WhatsApp. The ability to text on the iPad is dependent on the connection device to an iPhone, because it uses the iPhone to send text. You can simply send the texts to the iPad.

  • Connect an iPod to an Android Ultra HD TV

    Is possible to connect an ipod touch 6G in os x 10.0.1 to Android from Sony TV.

    I would like to display or mirror of my photos on the big screen and maybe control my TV with iPod.

    So far I was able to get my ipod to connect using wi - fi or bluetooth connection it search but does not connect.

    Hope someone has a suggestion or can tell me if it is not possible to do.

    Iain

    You can get an Apple TV and that you connect to the Android TV and use AirPlay.

    You can also get a cable that connect to the lighting of the iPod port and television. See:

    On AV adapters digital Apple for iPhone, iPad and iPod touch - Apple Support

    Some applications can be supported using the dongle Chromecast connected TV to "throw" the apps screen on TV.

    I don't kknow not if your TV supports Chromecast directly without using the dongle Chromecast

  • How can I transfer messages, contacts from Android to iPhone 7 more?

    I just bought the latest iPhone 7, I like it a lot! But what troubled me most is that how can I transfer hundreds of contacts and SMS of my Android to iPhone 7 more? My old phone is Samsung Galaxy s6.

    Another method that manually transfer the contacts, messages would be great. I have too many contacts to manually do this lol.

    Any help would be greatly appreciated.

    Apple has a migration on the Google game application to facilitate the process.

    BTW, iPhone 7 isn't out yet, so you might not have bought it. You probably meant iPhone 6 or 6 s?

  • The AirPod are compatible only with iphone 7? Or we can use it with more than 6 s... or any android device?

    The AirPod are compatible only with iphone 7? Or we can use it with more than 6 s... or any android device?

    Here are the tech specs: http://www.apple.com/shop/product/MMEF2AM/A/airpods

    They are bluetooth devices, so they work with the iPhone 5 or more.

    See you soon,.

    GB

  • Do not synchronize the Android calendars

    I had this phone Moto E crap for awhile and for awhile, my laptop computer calendars and calendars synchronized locally using sync Android smooth for calendars.  However, lately and I don't know what has changed, it's a mess.  In particular, if I enter new data as an appointment in my phone calendar, it is not sync to my laptop calendar, so I have to enter data twice which is ridiculous.  I looked around here and elsewhere on the sending of orders until the cloud or itunes or elsewhere, but I prefer sync data locally and not for everyone to find.  Thoughts?

    Ensure that, on your phone, you add events to your Google Calendar (which is what I guess that your synchronization with your computer) and not only for the phone itself. Sorry, I don't have a bike E at hand to understand the exact settings, but it should be within the calendar app.

  • IPhone-Android text problem

    I had a problem when a group of friends sends SMS and I do not get them from one of the individuals in the group. This group consists of 3 iPhones and Android 1. I know issues when people spend to have an iPhone and then go to an Android but forget to take of iMessage, but it is not part of the case. We all had the same type (iPhone and Androids) for a very long time who have nobody in this group never cross the line and changing. This question has been which is rampant in us for a long time.

    User - iPhone

    User B - iPhone

    User C - iPhone

    User D - Android

    User A sends the text that everyone always sees.

    User B replies, everyone sees

    User C responds, everyone EXCEPT the user sees A

    User D answers, everyone sees

    The user responds, everyone sees

    The user never sees any response user D sends. The user has, B, and C can send each other text without any problem in a group of different text (removing D user) and all is well. The user A and user D can text each other and all is well. User A has other groups text mixed with iPhones and androids that causes no problems. any help is greatly appreciated.

    A group that contains a non - iOS device is a MMS. It has nothing to do with iMessage. A multimedia Message, as an SMS is a function of carrier. There are no settings for SMS on the iPhone, but there is a setting for MMS messaging and Group Messaging. These two must be on for these to work. If the user does not receive messages from the user D, then the user must check with the carrier so that they have a SMS/MMS profile on their account, based on the description you provide.

  • File Transfer issue between 10.4.11 + 4.4 Android phone

    Hello.

    I recently got a Polaroid link 6 "A6WH smartphone, Google Android KitKat 4.4 running, and despite being told of Polaroid that I should be able to transfer files (ie. photos, music, videos) between this phone and a G4 aluminum PowerBook running OS 10.4.11 (old, Yes, I know!), I can't. I was told that I have to download Android File Transfer, which I did, but it didn't work (it only works on OS 10.5). Android File Transfer is Version 1.0 - I don't think that there is no earlier version.

    I tried to search on this forum and elsewhere online, some have suggested other programs, such as AirDroid, but when I tried to download them, they would not work with OS 10.4.11.

    I was able to transfer files over a Bluetooth connection - and only from the computer (and not vice versa). The USB cable provided with the phone doesn't seem to work (anyway) without a program to make it easier.

    Any suggestions for transfer files (ie. photos, music, videos) between these devices - via the USB port, or even simply through Bluetooth, back from the phone to the computer?

    Also, are all the programs available to convert video to MP4 format files, as I can't get the phone to open any other format - BTW, free is better!)

    Note: I would have gotten an iPhone, except for the fact that we tried to get rid of some AirMiles points that were about to expire, and they have not one!

    Thank you

    I have (and have had) smartfones non-Apple for some time

    To transfer ALL kinds of files, I just use an intermediary "cloud service".

    Many here will advise you http://dropbox.com/ as a reliable and free service

    * NOTE: Dropbox is more supported by OS X Tiger with their desktop app - but access via the Web site is not affected (I use TenFourFox: a fork of Mozilla Firefox ESR 38 for Power Macintosh and Mac OS X Tiger PowerPC as a browser)

  • Individual members on android

    I have a family of apple music account and want to share a familymember with android (s6) device. Connect on the android app Apple music no problem, but it seems that you can connect but not members of the family. This way my daughter has my playlists and messing it up.

    Is there a way to tell Apple music that the android user is someone else? There are more users in this family with the apple accounts too, but I don't see them in apple's music settings.

    I hope someone of you can help out met.

    Hello, Rombledoor!

    Thank you for using communities Support from Apple. After reading your post, I understand that you have a family membership of Apple's music with one of the family members using an Android device. You want to get them put in place but are struggling. I love the family membership of Apple's music and want to make sure that everyone in your family can enjoy the service!

    The article in the link below will help you manage your subscription of Apple's music on an Android device - including how to join a family membership existing.

    Managing your subscription to Apple's music if you use an Android phone

    Good listening!

  • Option card SD No. on Android 4.4

    Hi, I need to store pieces of Apple's music in my 32 GB SD card, but the option is not there. I have only about 300 MB of internal storage for free, and it is not enough. I tried to format the SD card with no luck, and the phone won't let me spend the app from internal phone storage storage or SD card.

    What should I do?

    Thank you!

    See this thread

    How to transfer music in itunes for micro sd for android phone library

  • When I send an iMessage since my iPhone 6 to my friends android, that it appears as an email to VZWPIXcom. Why?

    When I send an iMessage since my iPhone 6 to my friends android, that it appears as a VZWpix.com email. Why?

    Hey there zenkengee927b!

    I certainly want to make sure that my contacts see my messages to the right place, at the right time, because I wouldn't check the messaging app for the texts. We can help!

    You can press the 'i' button in the conversation and see what address or number is used for your friend.  Since it's a non-iPhone device, if it's an email used to send to, then an email as it should.  You can check that or start a new conversation with the contact and do not forget to type in the phone number of the friend.

    Use Messages with your iPhone, iPad or iPod touch - Apple Support

    Send a message

    1. Open the Messages and press on .
    2. Enter a phone number or e-mail address, or type and choose a contact.
    3. Type your message, then press Send.

    If it works normally for them, then you can keep or remove the conversation who sent emails and continue in the worker thread.

    Let us know how it turns out for you and we can see things farther away.

    Kind regards.

  • Impossible to download or sync music from my library using the android app Apple music

    I'm unable to download or synchronize my library of Apple's music on my device Android in-app music Apple.

    I've been using music Apple on Android for a few months, but has recently shifted from a Nexus 5 to a motorcycle G4.

    I installed the Apple music app and logged as usual. When you select the my music option in the menu, the app has attempted to update my library but gave a message 'don't miss not a Beat - find your Favorites and add them to my music, then come back and enjoy them here '.

    I already have hundreds of songs in my music that I can access my desktop and access on my Nexus 5 institutions.

    I tried to add new songs from the application, but this will not happen. Neither the app let me download all the music section to browse.

    I can listen to music, but not to download and sync.

    No matter who else facing the same problem? Or someone who can suggest me a way out?

    Hey there AppleUser_4491!

    It's really nice to have your Favorites saved in the app Apple music for easy reading. If you do not check the steps described in this article: get help with music from Apple on Android - Apple Support

    Try to restart the application first:

    Restart the application

    Most of the problems solve if you leave the Apple music, then re-open it.

    To ensure that the application is completely closed and all background processes are stopped until you reopen it, follow these steps:

    1. In the home screen, tap applications.
    2. Press settings.
    3. Scroll down to Applications and press 'Application Manager'.
    4. Press Apple's music.
    5. Press Stop Force. If you see a message that says "If you force stop an application, it can lead to errors," press OK.
    6. Return to the home screen or in your applications list, then reopen the Apple music.

    Let us know how to work the steps described in the article.

    See you soon!

  • How to delete downloads on Android (Motorola Moto G) mobile devices;

    Cannot delete downloads

    Hello

    This article explains how to remove the files downloaded from Android phone.
    It should apply to your Motorola phone as well.

  • Cannot find "SENT" mailbox using firefox android

    I can't find my (inept) SENT e-mail inbox when I connect using Firefox for Android. However, I find when I use Firefox desktop.
    I also find my Outbox when I log into my account Yahoo using Firefox for Android.

    Iinet called and they said it's a matter of Firefox Android.

    Someone have an idea..? Thank you very much!

    Is the same issue in another mobile (Android) browser?

    Can you please put here a link to your mailbox provider, so that I can save all try too?

Maybe you are looking for

  • 10.9 corruption of finder issue

    Hello I have something corrupted in my Finder settings. It is better understood by watching this video: https://www.dropbox.com/s/ed86hrttjt0xzey/Finder%20behaviour%20smaller.m4v?DL=0 A new window appears without any content, then move this window ma

  • Re: FN keys do not work in Windows 8

    Hello a certain deleted my previous post, if iam repost it, w What I remembered, is that my wireless worked fine, until my laptop when he died, the os after I rebooted the laptop, everything worked fine except my WI - FI, I mean I activate on mechani

  • Make drivers for iris 6200 pro AE

    Hey community,. I am trying to learn Adobe AE and recently acquired an iMac, which has an Iris 6200 Pro graphics card... Wondering if theres updates for the drivers use the 3d rendering. 3.1 GHz quad-core Intel Core i5 3.6 GHz mode and 8 GB, 1867 MHz

  • Monthly calendar

    How can I see several months on my Apple Watch new to the calendar?

  • Windows Update error Code 80246008 on system running Windows 7

    Hello I have a problem installing the Windows updates on my system (running Windows 7). Windows Update tells me that I have three important updates, but when I try to download, it tells me that they do not have. Thanks in advance for any help you can