spark-core-app-ios icon indicating copy to clipboard operation
spark-core-app-ios copied to clipboard

compilation error in simulator mode

Open rohitdubey19 opened this issue 11 years ago • 2 comments

I am getting below error while compiling in simulator mode. is it working for anyone? please help

Undefined symbols for architecture i386: "OBJC_CLASS$_FirstTimeConfig", referenced from: objc-class-ref in SPKNetworkSettingsViewController.o objc-class-ref in SPKSmartConfig.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)

rohitdubey19 avatar Jul 07 '14 06:07 rohitdubey19

I am having the same issue compiling in simulator mode. Any solutions?

faisala00 avatar Feb 21 '15 01:02 faisala00

My solution is to add a dummy implementation of the FirstTimeConfig class for the simulator. Add FirstTimeConfig.m to Vendor/TI with the content below. This at least allows to compile and run the app on the simulator.

//
//  FirstTimeConfig.m
//  Dummy TI FirstTimeConfig implementation for the iOS simulator
//
//  Copyright (c) 2015 Julien Vanier.
//  This file is release in the public domain

#if TARGET_IPHONE_SIMULATOR

#import <Foundation/Foundation.h>
#import "FirstTimeConfig.h"

@implementation OSFailureException : NSException

@end

@implementation FirstTimeConfig : NSObject

/* The following procedure can throw an OSFailureException exception */
- (id)init {
    return [super init];
}

/* The following procedure can throw an OSFailureException exception */
- (id)initWithKey:(NSString *)Key {
    return [super init];
}

/* The following procedure can throw an OSFailureException exception */
- (id)initWithKey:(NSString *)Key withEncryptionKey:(NSData *)encryptionKey {
    return [super init];
}

/* The following procedure can throw an OSFailureException exception */
- (id)initWithData:(NSString *)Ip withSSID:(NSString *)Ssid withKey:(NSString *)Key withEncryptionKey:(NSData *)EncryptionKey numberOfSetups:(int)numOfSetups numberOfSyncs:(int)numOfSyncs syncLength1:(int)lSync1 syncLength2:(int)lSync2 delayInMicroSeconds:(useconds_t)uDelay {
    return [super init];
}

/* The following procedure can throw an OSFailureException exception */
- (void)stopTransmitting {
}

/* The following procedure can throw an OSFailureException exception */
- (void)transmitSettings {

}

/* The following procedure can throw an OSFailureException exception */
- (bool)waitForAck {
    return NO;
}

- (bool)isTransmitting {
    return NO;
}

- (void)setDeviceName:(const NSString *)deviceName {

}

+ (NSString *)getSSID {
    return @"test_ssid";
}

+ (NSString *)getGatewayAddress {
    return @"10.0.0.1";
}

@end

#endif

monkbroc avatar Jun 13 '15 21:06 monkbroc