tharak-android 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tharak-android",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
2
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
- package="org.thiragatisoft.core">
3
+ package="org.thiragatisoft.app">
4
4
 
5
5
  </manifest>
@@ -1,27 +0,0 @@
1
- package org.thiragatisoft.core;
2
-
3
-
4
- import android.os.Bundle;
5
- import com.getcapacitor.Plugin;
6
- import org.thiragatisoft.core.http.Http;
7
- import java.util.ArrayList;
8
- import java.util.HashMap;
9
-
10
- public class MainActivity extends VitalActivity {
11
- private static final String TAG = "MainActivity";
12
- private static final HashMap<String, String> callbacks = new HashMap<>();
13
- @Override
14
- public void onCreate(Bundle savedInstanceState) {
15
- super.onCreate(savedInstanceState);
16
-
17
- // Initializes the Bridge
18
- this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
19
- // Additional plugins you've installed go here
20
- // Ex: add(TotallyAwesomePlugin.class);
21
- add(AppUtils.class);
22
- add(RestClient.class);
23
- add(Http.class);
24
- add(FileSelector.class);
25
- }});
26
- }
27
- }