capacitor-voice-recorder
Advanced tools
Comparing version 0.0.9 to 0.0.91
{ | ||
"name": "capacitor-voice-recorder", | ||
"version": "0.0.9", | ||
"version": "0.0.91", | ||
"description": "Capacitor plugin for voice recording", | ||
@@ -5,0 +5,0 @@ "main": "dist/esm/index.js", |
@@ -105,1 +105,14 @@ # capacitor-voice-recorder | ||
and a corresponding purpose string in your app's Info.plist | ||
## android note | ||
Please make sure to add the plugin in your MainActivity.java like so: | ||
``` | ||
import com.tchvu3.capvoicerecorder.VoiceRecorder; | ||
... | ||
public void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{ | ||
add(VoiceRecorder.class); // Add this line | ||
}}); | ||
} | ||
``` |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1571485
118