mirror of
https://github.com/apache/cordova-android.git
synced 2026-05-30 00:00:04 +08:00
feat!: deprecate CordovaPlugin's method initialize (#1771)
This commit is contained in:
@@ -64,7 +64,11 @@ public class CordovaPlugin {
|
|||||||
* Called after plugin construction and fields have been initialized.
|
* Called after plugin construction and fields have been initialized.
|
||||||
* Prefer to use pluginInitialize instead since there is no value in
|
* Prefer to use pluginInitialize instead since there is no value in
|
||||||
* having parameters on the initialize() function.
|
* having parameters on the initialize() function.
|
||||||
|
*
|
||||||
|
* @deprecated Use {@link #pluginInitialize()} instead. This method is no longer recommended
|
||||||
|
* and will be removed in future versions.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public void initialize(CordovaInterface cordova, CordovaWebView webView) {
|
public void initialize(CordovaInterface cordova, CordovaWebView webView) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -416,7 +420,7 @@ public class CordovaPlugin {
|
|||||||
* @param requestCode
|
* @param requestCode
|
||||||
* @param permissions
|
* @param permissions
|
||||||
* @param grantResults
|
* @param grantResults
|
||||||
*
|
*
|
||||||
* @deprecated Use {@link #onRequestPermissionsResult} instead.
|
* @deprecated Use {@link #onRequestPermissionsResult} instead.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
|||||||
Reference in New Issue
Block a user