• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Can't debug/run on iOS 7.03,iPhone 5s

New Here ,
Jan 31, 2015 Jan 31, 2015

Copy link to clipboard

Copied

I build a ipa with ane, it can be debug/run on iOS7.12-iPhone 4,iOS8.13-iPad 2,iTouch 5

but,it can't be debug/run on iOS 7.03,iPhone 5s

TOPICS
Performance issues

Views

281

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Feb 09, 2015 Feb 09, 2015

Hi,

Thanks for reporting this issue. Requesting you to please provide a sample project containing action script code, so that we can reproduce this issue at our end.

regards,

Adobe AIR Team

Votes

Translate

Translate
New Here ,
Jan 31, 2015 Jan 31, 2015

Copy link to clipboard

Copied

when you debug your ipa, run the application, and it will show the adobe alert

but it did not show on iOS 7.03,iPhone 5s,just crashed

my objective code:

#import "FlashRuntimeExtensions.h"

FREObject tryCall(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[])

{

    FREObject retStr;

    FRENewObjectFromUTF8(1, (const uint8_t*)"", &retStr);

    return retStr;

}

void ANEContextInit(void* extData, const uint8_t* ctxType, FREContext ctx, uint32_t* numFunctionsToTest, const FRENamedFunction** functionsToSet)

{

    *numFunctionsToTest = 1;

    FRENamedFunction* func = (FRENamedFunction*) malloc(sizeof(FRENamedFunction) * *numFunctionsToTest);

    func[0].name = (const uint8_t*) "tryCall";

    func[0].functionData = NULL;

    func[0].function = &tryCall;

    *functionsToSet = func;

}

void ANEInit(void** extDataToSet, FREContextInitializer * ctxInitializerToSet, FREContextFinalizer * ctxFinalizerToSet)

{

    *extDataToSet = NULL;

    *ctxInitializerToSet = &ANEContextInit;

}

i think it just a empty and,what should i do?how can i fix this? thank you

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 31, 2015 Jan 31, 2015

Copy link to clipboard

Copied

by the way,I use AIR 16.0.0.283, Xcode 6.1.1

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Feb 09, 2015 Feb 09, 2015

Copy link to clipboard

Copied

Hi,

Thanks for reporting this issue. Requesting you to please provide a sample project containing action script code, so that we can reproduce this issue at our end.

regards,

Adobe AIR Team

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 14, 2015 Feb 14, 2015

Copy link to clipboard

Copied

LATEST

Thank for you reply my question, I find this is a bug that already in the bug list,and it has fix in AIR 17.It will happened only iOS  7 + 64bit cpu.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines