diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 658cd4ae37..345e170ff4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,8 +35,6 @@ To create a code reproduction: Before working on Capacitor, it's important to understand the philosophy behind the project to avoid investing time in things that won't fit into the goals of the project. Please read [@maxlynch](http://twitter.com/maxlynch)'s essay [How Capacitor Works](https://tinyletter.com/ionic-max/letters/how-capacitor-works) for a deep dive into the project and its goals. -1. Check out this repository. -2. Read and follow [`example/README.md`](../example/README.md) ### Consult with the team @@ -61,7 +59,6 @@ The `ionic-team/capacitor` repo is a monorepo containing all of the standard Cap * `ios-template`: Default iOS App installed by the CLI * `android`: Capacitor Android Runtime * `android-template`: Default Android App installed by the CLI -* `example`: Example project for development * `plugin-template`: The default plugin template when creating a new plugin * `scripts`: publish and task scripts diff --git a/example/.gitignore b/example/.gitignore deleted file mode 100644 index 79fb0056cd..0000000000 --- a/example/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.sourcemaps -xcuserdata/ diff --git a/example/README.md b/example/README.md deleted file mode 100644 index aa34cf4e8a..0000000000 --- a/example/README.md +++ /dev/null @@ -1,85 +0,0 @@ -# Capacitor Example App - -This example app can be used to develop and test Capacitor. - -This project contains a modified Ionic app as the web app (source code in `src`, build in `www`), that demos the use of the Capacitor APIs (from `@capacitor/code`). The project is also already set up with two native projects, `ios` and `android`, that can be used to build and debug native apps for those platforms. - -The installation instructions and native projects are set up in such a way, that `@capacitor/core` and the Capacitor Android and iOS libraries that are used in the native projects are loaded from the local (parent) directory, instead of as an external dependency through the normal distribution mechanism (npm, Cocoapods and Gradle/Bintray): - -* `@capacitor/core` = `../core` -* Capacitor iOS = `../ios` -* Capacitor Android = `../android` - -This way you can make direct changes to all those and use them in the native apps, allowing quick iteration of development. - -Note: This project does _not_ use the Ionic or Capacitor CLIs. Please follow the steps below to build, prepare and run the apps. - -## 1. Build Capacitor Core Module - -Start by building the Capacitor Core Module in `/core`: - -``` -cd ../core - -npm install -npm run build -npm link -``` - -### Build Capacitor Electron Module - -``` -cd ../electron - -npm install -npm run build -npm link -``` - -## 2. Build Example App - -Switch back over to this example project in `/example` where you first install dependencies and link in the `@capacitor/core` you just built in the step before, then build the app and copy the build files to the correct `public` directories for both the iOS and Android example apps: - -``` -cd ../example - -npm install -npm link @capacitor/core -npm link @capacitor/electron - -npm run build -npm run copy -``` - -## 3. Build and run the native Capacitor Apps - -Now that everything is in place you can build the native Capacitor Apps: - -### a) Build and run iOS App - -Before you can run the project, you have to update the Cocoapods inside: - -``` -cd ios/IonicRunner -pod update -``` - -Open in Xcode: `example/ios/IonicRunner/IonicRunner.xcworkspace` - -### b) Build and run Android App - -Open in Android Studio: `example/android` - -### c) Run Electron App - -```bash -cd ./electron -# Install dependencies -npm install -# Link to the local @capacitor/electron -npm link @capacitor/electron -# Run the app -npm start -``` - - diff --git a/example/android/.gitignore b/example/android/.gitignore deleted file mode 100644 index 39fb081a42..0000000000 --- a/example/android/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -*.iml -.gradle -/local.properties -/.idea/workspace.xml -/.idea/libraries -.DS_Store -/build -/captures -.externalNativeBuild diff --git a/example/android/app/.gitignore b/example/android/app/.gitignore deleted file mode 100644 index 796b96d1c4..0000000000 --- a/example/android/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle deleted file mode 100644 index 20d06704fc..0000000000 --- a/example/android/app/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -apply plugin: 'com.android.application' - -android { - compileSdkVersion 29 - defaultConfig { - applicationId "com.getcapacitor.app" - minSdkVersion 21 - targetSdkVersion 29 - versionCode 1 - versionName "1.0" - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - } - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } - } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.1.0' - testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' - implementation project(':android-capacitor') - // Uncomment to develop the plugin template - // implementation project(':plugin') -} diff --git a/example/android/app/proguard-rules.pro b/example/android/app/proguard-rules.pro deleted file mode 100644 index f1b424510d..0000000000 --- a/example/android/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile diff --git a/example/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java b/example/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java deleted file mode 100644 index 3b228b21f5..0000000000 --- a/example/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.getcapacitor.myapp; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see Testing documentation - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() throws Exception { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - - assertEquals("com.getcapacitor.app", appContext.getPackageName()); - } -} diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index 75c05281f7..0000000000 --- a/example/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example/android/app/src/main/assets/capacitor.config.json b/example/android/app/src/main/assets/capacitor.config.json deleted file mode 100644 index f3d2ba2ac9..0000000000 --- a/example/android/app/src/main/assets/capacitor.config.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "appId": "com.example.app", - "appName": "App", - "bundledWebRuntime": true, - "webDir": "www", - "plugins": { - "SplashScreen": { - "launchShowDuration": 12345 - }, - "LocalNotifications": { - "smallIcon": "ic_stat_icon_config_sample", - "iconColor": "#CE0B7C" - } - } -} \ No newline at end of file diff --git a/example/android/app/src/main/assets/page1/index.html b/example/android/app/src/main/assets/page1/index.html deleted file mode 100644 index 89c9101cde..0000000000 --- a/example/android/app/src/main/assets/page1/index.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - -

Hello from HTML

- - \ No newline at end of file diff --git a/example/android/app/src/main/assets/public/.gitkeep b/example/android/app/src/main/assets/public/.gitkeep deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/example/android/app/src/main/java/com/getcapacitor/myapp/MainActivity.java b/example/android/app/src/main/java/com/getcapacitor/myapp/MainActivity.java deleted file mode 100644 index 222632f1c8..0000000000 --- a/example/android/app/src/main/java/com/getcapacitor/myapp/MainActivity.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.getcapacitor.myapp; - -import android.os.Bundle; - -import com.getcapacitor.BridgeActivity; -import com.getcapacitor.Plugin; - -import java.util.ArrayList; - -public class MainActivity extends BridgeActivity { - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - - // Initializes the Bridge - this.init(savedInstanceState, new ArrayList>() {{ - // Additional plugins you've installed go here - // Ex: add(TotallyAwesomePlugin.class); - }}); - } -} diff --git a/example/android/app/src/main/java/com/getcapacitor/myapp/SimpleFragmentActivity.java b/example/android/app/src/main/java/com/getcapacitor/myapp/SimpleFragmentActivity.java deleted file mode 100644 index df68da5136..0000000000 --- a/example/android/app/src/main/java/com/getcapacitor/myapp/SimpleFragmentActivity.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.getcapacitor.myapp; - -import android.net.Uri; -import android.os.Bundle; -import android.widget.TextView; - -import androidx.appcompat.app.AppCompatActivity; -import androidx.viewpager.widget.ViewPager; - -import com.getcapacitor.BridgeFragment; - -public class SimpleFragmentActivity extends AppCompatActivity implements BridgeFragment.OnFragmentInteractionListener { - private TextView mTextMessage; - private ViewPager mViewPager; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_fragment_simple); - } - - - - @Override - public void onFragmentInteraction(Uri uri) { - } -} diff --git a/example/android/app/src/main/res/drawable-land-hdpi/splash.png b/example/android/app/src/main/res/drawable-land-hdpi/splash.png deleted file mode 100644 index e31573b4fc..0000000000 Binary files a/example/android/app/src/main/res/drawable-land-hdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-land-ldpi/splash.png b/example/android/app/src/main/res/drawable-land-ldpi/splash.png deleted file mode 100644 index 34003d0c5a..0000000000 Binary files a/example/android/app/src/main/res/drawable-land-ldpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-land-mdpi/splash.png b/example/android/app/src/main/res/drawable-land-mdpi/splash.png deleted file mode 100644 index f7a64923ea..0000000000 Binary files a/example/android/app/src/main/res/drawable-land-mdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-land-xhdpi/splash.png b/example/android/app/src/main/res/drawable-land-xhdpi/splash.png deleted file mode 100644 index 807725501b..0000000000 Binary files a/example/android/app/src/main/res/drawable-land-xhdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-land-xxhdpi/splash.png b/example/android/app/src/main/res/drawable-land-xxhdpi/splash.png deleted file mode 100644 index 14c6c8fe39..0000000000 Binary files a/example/android/app/src/main/res/drawable-land-xxhdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-land-xxxhdpi/splash.png b/example/android/app/src/main/res/drawable-land-xxxhdpi/splash.png deleted file mode 100644 index 244ca2506d..0000000000 Binary files a/example/android/app/src/main/res/drawable-land-xxxhdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-port-hdpi/splash.png b/example/android/app/src/main/res/drawable-port-hdpi/splash.png deleted file mode 100644 index 74faaa583c..0000000000 Binary files a/example/android/app/src/main/res/drawable-port-hdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-port-ldpi/splash.png b/example/android/app/src/main/res/drawable-port-ldpi/splash.png deleted file mode 100644 index 2833d1ffdd..0000000000 Binary files a/example/android/app/src/main/res/drawable-port-ldpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-port-mdpi/splash.png b/example/android/app/src/main/res/drawable-port-mdpi/splash.png deleted file mode 100644 index e944f4ad4e..0000000000 Binary files a/example/android/app/src/main/res/drawable-port-mdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-port-xhdpi/splash.png b/example/android/app/src/main/res/drawable-port-xhdpi/splash.png deleted file mode 100644 index 564a82ff95..0000000000 Binary files a/example/android/app/src/main/res/drawable-port-xhdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-port-xxhdpi/splash.png b/example/android/app/src/main/res/drawable-port-xxhdpi/splash.png deleted file mode 100644 index bfabe6871a..0000000000 Binary files a/example/android/app/src/main/res/drawable-port-xxhdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-port-xxxhdpi/splash.png b/example/android/app/src/main/res/drawable-port-xxxhdpi/splash.png deleted file mode 100644 index 6929071268..0000000000 Binary files a/example/android/app/src/main/res/drawable-port-xxxhdpi/splash.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/example/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml deleted file mode 100644 index c7bd21dbd8..0000000000 --- a/example/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - diff --git a/example/android/app/src/main/res/drawable/ic_launcher_background.xml b/example/android/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index d5fccc538c..0000000000 --- a/example/android/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example/android/app/src/main/res/drawable/ic_launcher_foreground.xml b/example/android/app/src/main/res/drawable/ic_launcher_foreground.xml deleted file mode 100644 index 84330a705f..0000000000 --- a/example/android/app/src/main/res/drawable/ic_launcher_foreground.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - diff --git a/example/android/app/src/main/res/drawable/ic_stat_icon_config_sample.png b/example/android/app/src/main/res/drawable/ic_stat_icon_config_sample.png deleted file mode 100644 index 7bcd81be5f..0000000000 Binary files a/example/android/app/src/main/res/drawable/ic_stat_icon_config_sample.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable/ic_stat_icon_sample.png b/example/android/app/src/main/res/drawable/ic_stat_icon_sample.png deleted file mode 100644 index 458abd50ee..0000000000 Binary files a/example/android/app/src/main/res/drawable/ic_stat_icon_sample.png and /dev/null differ diff --git a/example/android/app/src/main/res/drawable/launch_splash.xml b/example/android/app/src/main/res/drawable/launch_splash.xml deleted file mode 100644 index 2cc56117e6..0000000000 --- a/example/android/app/src/main/res/drawable/launch_splash.xml +++ /dev/null @@ -1,5 +0,0 @@ - - diff --git a/example/android/app/src/main/res/layout/activity_fragment_simple.xml b/example/android/app/src/main/res/layout/activity_fragment_simple.xml deleted file mode 100644 index cab60a4de5..0000000000 --- a/example/android/app/src/main/res/layout/activity_fragment_simple.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/example/android/app/src/main/res/layout/activity_main.xml b/example/android/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index f5d3888774..0000000000 --- a/example/android/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml deleted file mode 100644 index eca70cfe52..0000000000 --- a/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml deleted file mode 100644 index eca70cfe52..0000000000 --- a/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index a2f5908281..0000000000 Binary files a/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png deleted file mode 100644 index 1b52399808..0000000000 Binary files a/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-hdpi/icon.png b/example/android/app/src/main/res/mipmap-hdpi/icon.png deleted file mode 100644 index e5d149cc07..0000000000 Binary files a/example/android/app/src/main/res/mipmap-hdpi/icon.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-ldpi/icon.png b/example/android/app/src/main/res/mipmap-ldpi/icon.png deleted file mode 100644 index 2b2f2dd9bd..0000000000 Binary files a/example/android/app/src/main/res/mipmap-ldpi/icon.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index ff10afd6e1..0000000000 Binary files a/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png deleted file mode 100644 index 115a4c768a..0000000000 Binary files a/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-mdpi/icon.png b/example/android/app/src/main/res/mipmap-mdpi/icon.png deleted file mode 100644 index 8fdf994a01..0000000000 Binary files a/example/android/app/src/main/res/mipmap-mdpi/icon.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index dcd3cd8083..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png deleted file mode 100644 index 459ca609d3..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xhdpi/icon.png b/example/android/app/src/main/res/mipmap-xhdpi/icon.png deleted file mode 100644 index b81f1b1833..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xhdpi/icon.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 8ca12fe024..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png deleted file mode 100644 index 8e19b410a1..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxhdpi/icon.png b/example/android/app/src/main/res/mipmap-xxhdpi/icon.png deleted file mode 100644 index da14293480..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xxhdpi/icon.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index b824ebdd48..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png deleted file mode 100644 index 4c19a13c23..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/example/android/app/src/main/res/mipmap-xxxhdpi/icon.png b/example/android/app/src/main/res/mipmap-xxxhdpi/icon.png deleted file mode 100644 index f9934dc60f..0000000000 Binary files a/example/android/app/src/main/res/mipmap-xxxhdpi/icon.png and /dev/null differ diff --git a/example/android/app/src/main/res/values/colors.xml b/example/android/app/src/main/res/values/colors.xml deleted file mode 100644 index 3ab3e9cbce..0000000000 --- a/example/android/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - #3F51B5 - #303F9F - #FF4081 - diff --git a/example/android/app/src/main/res/values/dimens.xml b/example/android/app/src/main/res/values/dimens.xml deleted file mode 100644 index 4d6ddf5548..0000000000 --- a/example/android/app/src/main/res/values/dimens.xml +++ /dev/null @@ -1,5 +0,0 @@ - - 16dp - 16dp - 16dp - diff --git a/example/android/app/src/main/res/values/strings.xml b/example/android/app/src/main/res/values/strings.xml deleted file mode 100644 index eae1ddce37..0000000000 --- a/example/android/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,10 +0,0 @@ - - MyApp - MyApp - com.getcapacitor.myapp - FragmentActivity - - Home - Dashboard - Notifications - diff --git a/example/android/app/src/main/res/values/styles.xml b/example/android/app/src/main/res/values/styles.xml deleted file mode 100644 index c3cae287a9..0000000000 --- a/example/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - -