Revert "[android] Remove backwards compatibility for 0.47.0"
This reverts commit f68c6d168e87e8b2128f65be7d89915d62d6a6a5.
This commit is contained in:
parent
aca519a47d
commit
25314483d7
@ -31,6 +31,18 @@ public class RNFirebasePackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -29,6 +29,18 @@ public class RNFirebaseAdMobPackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -33,6 +33,18 @@ public class RNFirebaseAnalyticsPackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -28,6 +28,18 @@ public class RNFirebaseAuthPackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -28,6 +28,18 @@ public class RNFirebaseRemoteConfigPackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -28,6 +28,18 @@ public class RNFirebaseCrashPackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -28,6 +28,18 @@ public class RNFirebaseDatabasePackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -28,6 +28,18 @@ public class RNFirebaseFirestorePackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -28,6 +28,18 @@ public class RNFirebaseMessagingPackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -28,6 +28,18 @@ public class RNFirebasePerformancePackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatability
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
@ -33,6 +33,18 @@ public class RNFirebaseStoragePackage implements ReactPackage {
|
|||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of JS modules to register with the newly created catalyst instance.
|
||||||
|
* <p/>
|
||||||
|
* IMPORTANT: Note that only modules that needs to be accessible from the native code should be
|
||||||
|
* listed here. Also listing a native module here doesn't imply that the JS implementation of it
|
||||||
|
* will be automatically included in the JS bundle.
|
||||||
|
*/
|
||||||
|
// TODO: Removed in 0.47.0. Here for backwards compatibility
|
||||||
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reactContext
|
* @param reactContext
|
||||||
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
* @return a list of view managers that should be registered with {@link UIManagerModule}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user