File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 25
25
#import " RCTBridgeModule.h"
26
26
#import " RCTLog.h"
27
27
@interface ReactLocalization : NSObject <RCTBridgeModule>
28
- -( void )getLanguage:(RCTResponseSenderBlock)callback;
28
+
29
29
@end
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ -(NSString*) getCurrentLanguage;
28
28
@end
29
29
30
30
@implementation ReactLocalization
31
-
31
+ RCT_EXPORT_MODULE ();
32
32
/*
33
33
* Private implementation
34
34
*/
@@ -39,8 +39,7 @@ -(NSString*) getCurrentLanguage{
39
39
/*
40
40
* Method called from javascript with a callback in case of success
41
41
*/
42
- -(void )getLanguage : (RCTResponseSenderBlock)callback {
43
- RCT_EXPORT ();
42
+ RCT_EXPORT_METHOD (getLanguage:(RCTResponseSenderBlock)callback){
44
43
NSString * language = [self getCurrentLanguage ];
45
44
NSLog (@" Language: %@ " , language);
46
45
callback (@[[NSNull null ], language]);
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-localization" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.1.2 " ,
4
4
"description" : " Simple module to localize the ReactNative interface" ,
5
5
"main" : " LocalizedStrings.js" ,
6
6
"scripts" : {
18
18
" internationalization"
19
19
],
20
20
"dependencies" : {
21
- "react-native" : " ^0.3.10 "
21
+ "react-native" : " ^0.4.0 "
22
22
},
23
23
"author" :
" Stefano Falda <[email protected] > (http://www.babisoft.com)" ,
24
24
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments