Skip to content

Commit b1c3649

Browse files
committed
Fixed a compatibility problem with react native 0.4
1 parent bb62f0b commit b1c3649

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

ReactLocalization.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
#import "RCTBridgeModule.h"
2626
#import "RCTLog.h"
2727
@interface ReactLocalization : NSObject<RCTBridgeModule>
28-
-(void)getLanguage:(RCTResponseSenderBlock)callback;
28+
2929
@end

ReactLocalization.m

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ -(NSString*) getCurrentLanguage;
2828
@end
2929

3030
@implementation ReactLocalization
31-
31+
RCT_EXPORT_MODULE();
3232
/*
3333
* Private implementation
3434
*/
@@ -39,8 +39,7 @@ -(NSString*) getCurrentLanguage{
3939
/*
4040
* Method called from javascript with a callback in case of success
4141
*/
42-
-(void)getLanguage:(RCTResponseSenderBlock)callback{
43-
RCT_EXPORT();
42+
RCT_EXPORT_METHOD(getLanguage:(RCTResponseSenderBlock)callback){
4443
NSString * language = [self getCurrentLanguage];
4544
NSLog(@"Language: %@", language);
4645
callback(@[[NSNull null], language]);

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-localization",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Simple module to localize the ReactNative interface",
55
"main": "LocalizedStrings.js",
66
"scripts": {
@@ -18,7 +18,7 @@
1818
"internationalization"
1919
],
2020
"dependencies": {
21-
"react-native": "^0.3.10"
21+
"react-native": "^0.4.0"
2222
},
2323
"author": "Stefano Falda <[email protected]> (http://www.babisoft.com)",
2424
"license": "MIT",

0 commit comments

Comments
 (0)