hola yo desarrollo aplicaciones para moviles y tengo problemas para cargar el binario desde inicio de mayo
Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini
The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad
iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool
Apple announces 4th generation iPad packing an A6X CPU
hola yo desarrollo aplicaciones para moviles y tengo problemas para cargar el binario desde inicio de mayo
Recently i got this error when uploading my app:
Dear developer,
We have discovered one or more issues with your recent delivery for "Axiata Cup 2013". To process your delivery, the following issues must be corrected:
Invalid Executable Size - The executable size of 81845168 bytes exceeds the maximum allowed size of 60 MB.
Once these issues have been corrected, go to the Version Details page and click "Ready to Upload Binary." Continue through the submission process until the app status is "Waiting for Upload." You can then deliver the corrected binary.
Did Apple set the limit for the maximum size?
Recently i got this error when uploading my app:
Dear developer,
We have discovered one or more issues with your recent delivery for "Axiata Cup 2013". To process your delivery, the following issues must be corrected:
Invalid Executable Size - The executable size of 81845168 bytes exceeds the maximum allowed size of 60 MB.
Once these issues have been corrected, go to the Version Details page and click "Ready to Upload Binary." Continue through the submission process until the app status is "Waiting for Upload." You can then deliver the corrected binary.
Did Apple set the limit for the maximum size?
Thanks for reading. I'm having problem with Mac app In-app Purchase.
I just setup Mac developer account with $99 subscription.
1) Go to Developer Certificate Utility, create App ID: com.mpham.TestIAP, create certificate, add my Mac ID to System list. Final, add Provisioning profile (development)
2) Go to iTunes connect, create App: com.mpham.TestIAP, create IAP: com.mpham.TestIAP.IAP1. Final, make app status to "Waiting For Upload"
3) I create simple Cocoa app: com.mpham.TestIAP, choose Code sign to com.mpham.TestIAP
//
// AppDelegate.h
//
#import
#import
@interface AppDelegate : NSObject
{
SKProduct *proUpgradeProduct;
SKProductsRequest *productsRequest;
}
@property (assign) IBOutlet NSWindow *window;
@end
and
//
// AppDelegate.m
//
#import "AppDelegate.h"
#define k1 @"com.mpham.TestIAP.IAP1"
#define k2 @"IAP1"
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
if ([SKPaymentQueue canMakePayments])
{
[self requestIAP1];
[self requestIAP2];
}
}
- (void)requestIAP1
{
NSLog(@"requestIAP1");
NSSet *productIdentifiers = [NSSet setWithObject:k1];
productsRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:productIdentifiers];
productsRequest.delegate = self;
[productsRequest start];
}
- (void)requestIAP2
{
NSLog(@"requestIAP2");
NSSet *productIdentifiers = [NSSet setWithObject:k2];
productsRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:productIdentifiers];
productsRequest.delegate = self;
[productsRequest start];
}
#pragma mark SKProductsRequestDelegate methods
- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
{
NSArray *products = [[NSArray alloc] initWithArray:response.products];
for(SKProduct *item in products)
{
NSLog(@"Product title: %@" , item.localizedTitle);
NSLog(@"Product description: %@" , item.localizedDescription);
NSLog(@"Product price: %@" , item.price);
NSLog(@"Product id: %@" , item.productIdentifier);
}
for (NSString *invalidProductId in response.invalidProductIdentifiers)
{
NSLog(@"Invalid : %@" , invalidProductId);
}
}
#pragma mark - PaymentQueue
-(void)paymentQueue:(SKPaymentQueue *)queue removedTransactions:(NSArray *)transactions
{
}
-(void)paymentQueue:(SKPaymentQueue *)queue restoreCompletedTransactionsFailedWithError:(NSError *)error
{
}
-(void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions
{
}
-(void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue
{
}
@end
It's run and show the log
2013-02-18 16:59:14.948 TestIAP[12646:403] requestIAP1
2013-02-18 16:59:14.951 TestIAP[12646:403] requestIAP2
2013-02-18 16:59:15.939 TestIAP[12646:1b03] Invalid : IAP1
2013-02-18 16:59:16.043 TestIAP[12646:1b03] Invalid : com.mpham.TestIAP.IAP1
It's mean there is Invalid product, but I created product in iTunesConnect, could anyone please help me?
Recently i got this error when uploading my app:
Dear developer,
We have discovered one or more issues with your recent delivery for "Axiata Cup 2013". To process your delivery, the following issues must be corrected:
Invalid Executable Size - The executable size of 81845168 bytes exceeds the maximum allowed size of 60 MB.
Once these issues have been corrected, go to the Version Details page and click "Ready to Upload Binary." Continue through the submission process until the app status is "Waiting for Upload." You can then deliver the corrected binary.
Did Apple set the limit for the maximum size?