File tree 1 file changed +2
-4
lines changed
android/src/main/java/com/reactcommunity/rndatetimepicker
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
import androidx .annotation .Nullable ;
5
5
6
- import com .facebook .react .TurboReactPackage ;
6
+ import com .facebook .react .BaseReactPackage ;
7
7
import com .facebook .react .bridge .NativeModule ;
8
8
import com .facebook .react .bridge .ReactApplicationContext ;
9
9
import com .facebook .react .module .model .ReactModuleInfo ;
12
12
import java .util .HashMap ;
13
13
import java .util .Map ;
14
14
15
- public class RNDateTimePickerPackage extends TurboReactPackage {
15
+ public class RNDateTimePickerPackage extends BaseReactPackage {
16
16
@ Nullable
17
17
@ Override
18
18
public NativeModule getModule (String name , ReactApplicationContext reactContext ) {
@@ -37,7 +37,6 @@ public ReactModuleInfoProvider getReactModuleInfoProvider() {
37
37
DatePickerModule .NAME ,
38
38
false , // canOverrideExistingModule
39
39
false , // needsEagerInit
40
- false , // hasConstants
41
40
false , // isCxxModule
42
41
isTurboModule // isTurboModule
43
42
));
@@ -48,7 +47,6 @@ public ReactModuleInfoProvider getReactModuleInfoProvider() {
48
47
TimePickerModule .NAME ,
49
48
false , // canOverrideExistingModule
50
49
false , // needsEagerInit
51
- false , // hasConstants
52
50
false , // isCxxModule
53
51
isTurboModule // isTurboModule
54
52
));
You can’t perform that action at this time.
0 commit comments