diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 5927722..5316cb2 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -15,10 +15,10 @@ jobs: encodedString: ${{ secrets.KEYSTORE_BASE64 }} - name: Create key.properties run: | - echo "storeFile=${{ steps.android_keystore.outputs.filePath }}" > refilc/android/key.properties - echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> refilc/android/key.properties - echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> refilc/android/key.properties - echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> refilc/android/key.properties + echo "storeFile=${{ steps.android_keystore.outputs.filePath }}" > filcnaplo/android/key.properties + echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> filcnaplo/android/key.properties + echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> filcnaplo/android/key.properties + echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> filcnaplo/android/key.properties - uses: actions/setup-java@v3 with: distribution: "zulu" @@ -32,7 +32,7 @@ jobs: - name: Install dependencies run: ./fix-pub.sh - name: Build - run: cd refilc && ./build.sh + run: cd filcnaplo && ./build.sh - name: Upload Android Release uses: actions/upload-artifact@v2 with: diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index c456926..604d8ea 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -46,7 +46,7 @@ jobs: # Build and sign the ipa using a single flutter command - name: Building IPA - working-directory: refilc + working-directory: filcnaplo run: bash build-ipa.sh # Collect the file and upload as artifact @@ -55,7 +55,7 @@ jobs: with: name: release-ipa # Path to the release files - path: refilc/build/ios/ipa/*.ipa + path: filcnaplo/build/ios/ipa/*.ipa # Important! Cleanup: remove the certificate and provisioning profile from the runner! - name: Clean up keychain and provisioning profile diff --git a/.idea/naplo.iml b/.idea/naplo.iml index 1d81c0f..ab2f482 100644 --- a/.idea/naplo.iml +++ b/.idea/naplo.iml @@ -3,63 +3,63 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 699c55f..b2035b9 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,9 +2,9 @@ - - - - + + + + \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index 7acbc65..3c003e4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,8 +2,8 @@ "version": "0.2.0", "configurations": [ { - "name": "refilc", - "cwd": "refilc", + "name": "filcnaplo", + "cwd": "filcnaplo", "request": "launch", "type": "dart", "toolArgs": [ @@ -11,8 +11,8 @@ ] }, // { - // "name": "refilc release", - // "cwd": "refilc release", + // "name": "filcnaplo release", + // "cwd": "filcnaplo release", // "request": "launch", // "type": "dart", // "program": "lib/main.dart", @@ -23,7 +23,7 @@ { "name": "Flutter", "program": "lib/main.dart", - "cwd": "refilc", + "cwd": "filcnaplo", "request": "launch", "type": "dart", "flutterMode": "debug" @@ -31,7 +31,7 @@ { "name": "Flutter (release)", "program": "lib/main.dart", - "cwd": "refilc", + "cwd": "filcnaplo", "request": "launch", "type": "dart", "flutterMode": "release" diff --git a/README.md b/README.md index 1f127f0..03b692c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Run `fix-pub.sh` ### Run the app ```sh -cd refilc +cd filcnaplo flutter run ``` diff --git a/filcnaplo/.gitignore b/filcnaplo/.gitignore new file mode 100644 index 0000000..7900af4 --- /dev/null +++ b/filcnaplo/.gitignore @@ -0,0 +1,47 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ + +# Web related +lib/generated_plugin_registrant.dart + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release +key.properties diff --git a/refilc/.metadata b/filcnaplo/.metadata similarity index 100% rename from refilc/.metadata rename to filcnaplo/.metadata diff --git a/refilc/README.md b/filcnaplo/README.md similarity index 86% rename from refilc/README.md rename to filcnaplo/README.md index 775cf06..02c4c20 100644 --- a/refilc/README.md +++ b/filcnaplo/README.md @@ -1,3 +1,3 @@ -# refilc - -Main lib +# refilc + +Main lib diff --git a/filcnaplo/analysis_options.yaml b/filcnaplo/analysis_options.yaml new file mode 100644 index 0000000..a7acf24 --- /dev/null +++ b/filcnaplo/analysis_options.yaml @@ -0,0 +1,29 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/filcnaplo/android/.gitignore b/filcnaplo/android/.gitignore new file mode 100644 index 0000000..a2ea94a --- /dev/null +++ b/filcnaplo/android/.gitignore @@ -0,0 +1,12 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +.project \ No newline at end of file diff --git a/refilc/android/app/build.gradle b/filcnaplo/android/app/build.gradle similarity index 96% rename from refilc/android/app/build.gradle rename to filcnaplo/android/app/build.gradle index b697642..49825fb 100644 --- a/refilc/android/app/build.gradle +++ b/filcnaplo/android/app/build.gradle @@ -1,99 +1,99 @@ -def localProperties = new Properties() -def localPropertiesFile = rootProject.file('local.properties') -if (localPropertiesFile.exists()) { - localPropertiesFile.withReader('UTF-8') { reader -> - localProperties.load(reader) - } -} - -def flutterRoot = localProperties.getProperty('flutter.sdk') -if (flutterRoot == null) { - throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") -} - -def flutterVersionCode = localProperties.getProperty('flutter.versionCode') -if (flutterVersionCode == null) { - throw new GradleException("Undefined VersionCode") -} - -def flutterVersionName = localProperties.getProperty('flutter.versionName') -if (flutterVersionName == null) { - throw new GradleException("Undefined VersionName") -} - -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" - -def keystoreProperties = new Properties() -def keystorePropertiesFile = rootProject.file("key.properties") -keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) - -android { - compileSdkVersion rootProject.ext.compileSdkVersion - - sourceSets { - main.java.srcDirs += 'src/main/kotlin' - } - - lintOptions { - disable 'InvalidPackage' - disable "Instantiatable" - checkReleaseBuilds false - abortOnError false - } - - defaultConfig { - applicationId "hu.refilc.naplo" - minSdkVersion 21 - targetSdkVersion rootProject.ext.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - multiDexEnabled true - } - - compileOptions { - // Flag to enable support for the new language APIs - coreLibraryDesugaringEnabled true - // Sets Java compatibility to Java 8 - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - signingConfigs { - release { - keyAlias keystoreProperties['keyAlias'] - keyPassword keystoreProperties['keyPassword'] - storeFile file(keystoreProperties['storeFile']) - storePassword keystoreProperties['storePassword'] - } - } - - buildTypes { - release { - signingConfig signingConfigs.release - shrinkResources false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } - - buildFeatures { - viewBinding true - } -} - -flutter { - source '../..' -} - -dependencies { - implementation 'com.android.support:multidex:2.0.1' - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - implementation 'joda-time:joda-time:2.9.4' - androidTestImplementation 'androidx.test:runner:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' - coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' - implementation 'androidx.window:window:1.0.0' - implementation 'androidx.window:window-java:1.0.0' -} +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + throw new GradleException("Undefined VersionCode") +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + throw new GradleException("Undefined VersionName") +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +def keystoreProperties = new Properties() +def keystorePropertiesFile = rootProject.file("key.properties") +keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + lintOptions { + disable 'InvalidPackage' + disable "Instantiatable" + checkReleaseBuilds false + abortOnError false + } + + defaultConfig { + applicationId "hu.refilc.naplo" + minSdkVersion 21 + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + multiDexEnabled true + } + + compileOptions { + // Flag to enable support for the new language APIs + coreLibraryDesugaringEnabled true + // Sets Java compatibility to Java 8 + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + signingConfigs { + release { + keyAlias keystoreProperties['keyAlias'] + keyPassword keystoreProperties['keyPassword'] + storeFile file(keystoreProperties['storeFile']) + storePassword keystoreProperties['storePassword'] + } + } + + buildTypes { + release { + signingConfig signingConfigs.release + shrinkResources false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + viewBinding true + } +} + +flutter { + source '../..' +} + +dependencies { + implementation 'com.android.support:multidex:2.0.1' + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" + implementation 'joda-time:joda-time:2.9.4' + androidTestImplementation 'androidx.test:runner:1.1.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' + coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' + implementation 'androidx.window:window:1.0.0' + implementation 'androidx.window:window-java:1.0.0' +} diff --git a/refilc/android/app/proguard-rules.pro b/filcnaplo/android/app/proguard-rules.pro similarity index 86% rename from refilc/android/app/proguard-rules.pro rename to filcnaplo/android/app/proguard-rules.pro index 0940b69..56fe627 100644 --- a/refilc/android/app/proguard-rules.pro +++ b/filcnaplo/android/app/proguard-rules.pro @@ -1,5 +1,5 @@ --keep class io.flutter.plugin.editing.** { *; } --keep class androidx.lifecycle.DefaultLifecycleObserver --keep class com.pauldemarco.flutter_blue.** { *; } --keep class com.mr.flutter.plugin.filepicker.** { *; } +-keep class io.flutter.plugin.editing.** { *; } +-keep class androidx.lifecycle.DefaultLifecycleObserver +-keep class com.pauldemarco.flutter_blue.** { *; } +-keep class com.mr.flutter.plugin.filepicker.** { *; } -keep class com.shockwave.** \ No newline at end of file diff --git a/refilc/android/app/src/profile/AndroidManifest.xml b/filcnaplo/android/app/src/debug/AndroidManifest.xml similarity index 98% rename from refilc/android/app/src/profile/AndroidManifest.xml rename to filcnaplo/android/app/src/debug/AndroidManifest.xml index fcc14fa..826ca84 100644 --- a/refilc/android/app/src/profile/AndroidManifest.xml +++ b/filcnaplo/android/app/src/debug/AndroidManifest.xml @@ -1,8 +1,8 @@ - - - - - - - - + + + + + + + + diff --git a/refilc/android/app/src/main/AndroidManifest.xml b/filcnaplo/android/app/src/main/AndroidManifest.xml similarity index 98% rename from refilc/android/app/src/main/AndroidManifest.xml rename to filcnaplo/android/app/src/main/AndroidManifest.xml index 3cdc402..14d49f3 100644 --- a/refilc/android/app/src/main/AndroidManifest.xml +++ b/filcnaplo/android/app/src/main/AndroidManifest.xml @@ -1,86 +1,86 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/MainActivity.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/MainActivity.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/MainActivity.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/MainActivity.java diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/database/DBManager.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/database/DBManager.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/database/DBManager.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/database/DBManager.java diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/database/SQLiteHelper.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/database/SQLiteHelper.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/database/SQLiteHelper.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/database/SQLiteHelper.java diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/utils/Utils.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/utils/Utils.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/utils/Utils.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/utils/Utils.java diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/utils/Week.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/utils/Week.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/utils/Week.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/utils/Week.java diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetable.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetable.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetable.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetable.java diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableDataProvider.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableDataProvider.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableDataProvider.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableDataProvider.java diff --git a/refilc/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableService.java b/filcnaplo/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableService.java similarity index 100% rename from refilc/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableService.java rename to filcnaplo/android/app/src/main/java/hu/refilc/naplo/widget_timetable/WidgetTimetableService.java diff --git a/refilc/android/app/src/main/res/drawable-hdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-hdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-hdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-hdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png b/filcnaplo/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png rename to filcnaplo/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png diff --git a/refilc/android/app/src/main/res/drawable-hdpi/ic_stat_splash_logo.png b/filcnaplo/android/app/src/main/res/drawable-hdpi/ic_stat_splash_logo.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-hdpi/ic_stat_splash_logo.png rename to filcnaplo/android/app/src/main/res/drawable-hdpi/ic_stat_splash_logo.png diff --git a/refilc/android/app/src/main/res/drawable-hdpi/splash.png b/filcnaplo/android/app/src/main/res/drawable-hdpi/splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-hdpi/splash.png rename to filcnaplo/android/app/src/main/res/drawable-hdpi/splash.png diff --git a/refilc/android/app/src/main/res/drawable-hdpi/tinta_image.png b/filcnaplo/android/app/src/main/res/drawable-hdpi/tinta_image.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-hdpi/tinta_image.png rename to filcnaplo/android/app/src/main/res/drawable-hdpi/tinta_image.png diff --git a/refilc/android/app/src/main/res/drawable-mdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-mdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-mdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-mdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png b/filcnaplo/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png rename to filcnaplo/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png diff --git a/refilc/android/app/src/main/res/drawable-mdpi/ic_stat_splash_logo.png b/filcnaplo/android/app/src/main/res/drawable-mdpi/ic_stat_splash_logo.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-mdpi/ic_stat_splash_logo.png rename to filcnaplo/android/app/src/main/res/drawable-mdpi/ic_stat_splash_logo.png diff --git a/refilc/android/app/src/main/res/drawable-mdpi/splash.png b/filcnaplo/android/app/src/main/res/drawable-mdpi/splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-mdpi/splash.png rename to filcnaplo/android/app/src/main/res/drawable-mdpi/splash.png diff --git a/refilc/android/app/src/main/res/drawable-night-hdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-night-hdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-night-hdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-night-hdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-night-mdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-night-mdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-night-mdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-night-mdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-night-xhdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-night-xhdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-night-xhdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-night-xhdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_check.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_check.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_check.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_check.xml index 62d6723..4545224 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_check.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_check.xml @@ -1,13 +1,13 @@ - - - + + + diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_chevron_left.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_chevron_left.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_chevron_left.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_chevron_left.xml index 01e9d40..a7f5dd6 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_chevron_left.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_chevron_left.xml @@ -1,13 +1,13 @@ - - - + + + diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_chevron_right.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_chevron_right.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_chevron_right.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_chevron_right.xml index c1e9015..93ad67e 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_chevron_right.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_chevron_right.xml @@ -1,13 +1,13 @@ - - - + + + diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_droplet.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_droplet.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_droplet.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_droplet.xml index cc3690b..865d06c 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_droplet.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_droplet.xml @@ -1,13 +1,13 @@ - - - + + + diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_launcher_background.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_launcher_background.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_launcher_background.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_launcher_background.xml index 07d5da9..a4f78de 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_launcher_background.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_launcher_background.xml @@ -1,170 +1,170 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_launcher_foreground.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_launcher_foreground.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_launcher_foreground.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_launcher_foreground.xml index 2b068d1..cc14f03 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_launcher_foreground.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_launcher_foreground.xml @@ -1,30 +1,30 @@ - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_navigation_2.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_navigation_2.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_navigation_2.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_navigation_2.xml index 273720c..90b35d8 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_navigation_2.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_navigation_2.xml @@ -1,13 +1,13 @@ - - - + + + diff --git a/refilc/android/app/src/main/res/drawable-nodpi/ic_refresh_cw.xml b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_refresh_cw.xml similarity index 97% rename from refilc/android/app/src/main/res/drawable-nodpi/ic_refresh_cw.xml rename to filcnaplo/android/app/src/main/res/drawable-nodpi/ic_refresh_cw.xml index f2365a8..289cd49 100644 --- a/refilc/android/app/src/main/res/drawable-nodpi/ic_refresh_cw.xml +++ b/filcnaplo/android/app/src/main/res/drawable-nodpi/ic_refresh_cw.xml @@ -1,27 +1,27 @@ - - - - - + + + + + diff --git a/refilc/android/app/src/main/res/drawable-v21/app_widget_background.xml b/filcnaplo/android/app/src/main/res/drawable-v21/app_widget_background.xml similarity index 95% rename from refilc/android/app/src/main/res/drawable-v21/app_widget_background.xml rename to filcnaplo/android/app/src/main/res/drawable-v21/app_widget_background.xml index 785445c..6721d42 100644 --- a/refilc/android/app/src/main/res/drawable-v21/app_widget_background.xml +++ b/filcnaplo/android/app/src/main/res/drawable-v21/app_widget_background.xml @@ -1,10 +1,10 @@ - - - - - + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-v21/app_widget_inner_view_background.xml b/filcnaplo/android/app/src/main/res/drawable-v21/app_widget_inner_view_background.xml similarity index 95% rename from refilc/android/app/src/main/res/drawable-v21/app_widget_inner_view_background.xml rename to filcnaplo/android/app/src/main/res/drawable-v21/app_widget_inner_view_background.xml index 007e287..5ae60cf 100644 --- a/refilc/android/app/src/main/res/drawable-v21/app_widget_inner_view_background.xml +++ b/filcnaplo/android/app/src/main/res/drawable-v21/app_widget_inner_view_background.xml @@ -1,10 +1,10 @@ - - - - - + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-v21/background.png b/filcnaplo/android/app/src/main/res/drawable-v21/background.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-v21/background.png rename to filcnaplo/android/app/src/main/res/drawable-v21/background.png diff --git a/refilc/android/app/src/main/res/drawable-v21/launch_background.xml b/filcnaplo/android/app/src/main/res/drawable-v21/launch_background.xml similarity index 100% rename from refilc/android/app/src/main/res/drawable-v21/launch_background.xml rename to filcnaplo/android/app/src/main/res/drawable-v21/launch_background.xml diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-xhdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xhdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_bg.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_bg.xml similarity index 96% rename from refilc/android/app/src/main/res/drawable-xhdpi/card_layout_bg.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_bg.xml index 860b811..0def536 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_bg.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_bg.xml @@ -1,7 +1,7 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile.xml similarity index 95% rename from refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile.xml index 6466eba..f12f731 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile.xml @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile_elmarad.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile_elmarad.xml similarity index 95% rename from refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile_elmarad.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile_elmarad.xml index 426d5c1..ee09eea 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile_elmarad.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile_elmarad.xml @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile_helyetesitett.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile_helyetesitett.xml similarity index 95% rename from refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile_helyetesitett.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile_helyetesitett.xml index 6e5cbff..030aaf2 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/card_layout_tile_helyetesitett.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/card_layout_tile_helyetesitett.xml @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png b/filcnaplo/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/ic_stat_splash_logo.png b/filcnaplo/android/app/src/main/res/drawable-xhdpi/ic_stat_splash_logo.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xhdpi/ic_stat_splash_logo.png rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/ic_stat_splash_logo.png diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/splash.png b/filcnaplo/android/app/src/main/res/drawable-xhdpi/splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xhdpi/splash.png rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/splash.png diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/timetable_widget_preview.png b/filcnaplo/android/app/src/main/res/drawable-xhdpi/timetable_widget_preview.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xhdpi/timetable_widget_preview.png rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/timetable_widget_preview.png diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_bottom.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_bottom.xml similarity index 96% rename from refilc/android/app/src/main/res/drawable-xhdpi/widget_card_bottom.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_bottom.xml index 8a99162..80b52be 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_bottom.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_bottom.xml @@ -1,7 +1,7 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_bottom_dark.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_bottom_dark.xml similarity index 96% rename from refilc/android/app/src/main/res/drawable-xhdpi/widget_card_bottom_dark.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_bottom_dark.xml index 2551ee3..f2d52b0 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_bottom_dark.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_bottom_dark.xml @@ -1,7 +1,7 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_top.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_top.xml similarity index 96% rename from refilc/android/app/src/main/res/drawable-xhdpi/widget_card_top.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_top.xml index e0e9376..a37fed6 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_top.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_top.xml @@ -1,7 +1,7 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_top_dark.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_top_dark.xml similarity index 96% rename from refilc/android/app/src/main/res/drawable-xhdpi/widget_card_top_dark.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_top_dark.xml index 4bbd0bb..c41e2b5 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/widget_card_top_dark.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_card_top_dark.xml @@ -1,7 +1,7 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xhdpi/widget_scroll_style.xml b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_scroll_style.xml similarity index 94% rename from refilc/android/app/src/main/res/drawable-xhdpi/widget_scroll_style.xml rename to filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_scroll_style.xml index a8f281e..a4eab7e 100644 --- a/refilc/android/app/src/main/res/drawable-xhdpi/widget_scroll_style.xml +++ b/filcnaplo/android/app/src/main/res/drawable-xhdpi/widget_scroll_style.xml @@ -1,17 +1,17 @@ - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable-xxhdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-xxhdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxhdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-xxhdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png b/filcnaplo/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png rename to filcnaplo/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png diff --git a/refilc/android/app/src/main/res/drawable-xxhdpi/ic_stat_splash_logo.png b/filcnaplo/android/app/src/main/res/drawable-xxhdpi/ic_stat_splash_logo.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxhdpi/ic_stat_splash_logo.png rename to filcnaplo/android/app/src/main/res/drawable-xxhdpi/ic_stat_splash_logo.png diff --git a/refilc/android/app/src/main/res/drawable-xxhdpi/splash.png b/filcnaplo/android/app/src/main/res/drawable-xxhdpi/splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxhdpi/splash.png rename to filcnaplo/android/app/src/main/res/drawable-xxhdpi/splash.png diff --git a/refilc/android/app/src/main/res/drawable-xxxhdpi/android12splash.png b/filcnaplo/android/app/src/main/res/drawable-xxxhdpi/android12splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxxhdpi/android12splash.png rename to filcnaplo/android/app/src/main/res/drawable-xxxhdpi/android12splash.png diff --git a/refilc/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png b/filcnaplo/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png rename to filcnaplo/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png diff --git a/refilc/android/app/src/main/res/drawable-xxxhdpi/ic_stat_splash_logo.png b/filcnaplo/android/app/src/main/res/drawable-xxxhdpi/ic_stat_splash_logo.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxxhdpi/ic_stat_splash_logo.png rename to filcnaplo/android/app/src/main/res/drawable-xxxhdpi/ic_stat_splash_logo.png diff --git a/refilc/android/app/src/main/res/drawable-xxxhdpi/splash.png b/filcnaplo/android/app/src/main/res/drawable-xxxhdpi/splash.png similarity index 100% rename from refilc/android/app/src/main/res/drawable-xxxhdpi/splash.png rename to filcnaplo/android/app/src/main/res/drawable-xxxhdpi/splash.png diff --git a/refilc/android/app/src/main/res/drawable/background.png b/filcnaplo/android/app/src/main/res/drawable/background.png similarity index 100% rename from refilc/android/app/src/main/res/drawable/background.png rename to filcnaplo/android/app/src/main/res/drawable/background.png diff --git a/refilc/android/app/src/main/res/drawable/btn_shape.xml b/filcnaplo/android/app/src/main/res/drawable/btn_shape.xml similarity index 95% rename from refilc/android/app/src/main/res/drawable/btn_shape.xml rename to filcnaplo/android/app/src/main/res/drawable/btn_shape.xml index d91b3b2..b820ec8 100644 --- a/refilc/android/app/src/main/res/drawable/btn_shape.xml +++ b/filcnaplo/android/app/src/main/res/drawable/btn_shape.xml @@ -1,18 +1,18 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable/btn_shape_login.xml b/filcnaplo/android/app/src/main/res/drawable/btn_shape_login.xml similarity index 95% rename from refilc/android/app/src/main/res/drawable/btn_shape_login.xml rename to filcnaplo/android/app/src/main/res/drawable/btn_shape_login.xml index 22c1d8f..84bb6fe 100644 --- a/refilc/android/app/src/main/res/drawable/btn_shape_login.xml +++ b/filcnaplo/android/app/src/main/res/drawable/btn_shape_login.xml @@ -1,18 +1,18 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/drawable/ic_absences.png b/filcnaplo/android/app/src/main/res/drawable/ic_absences.png similarity index 100% rename from refilc/android/app/src/main/res/drawable/ic_absences.png rename to filcnaplo/android/app/src/main/res/drawable/ic_absences.png diff --git a/refilc/android/app/src/main/res/drawable/ic_grades.png b/filcnaplo/android/app/src/main/res/drawable/ic_grades.png similarity index 100% rename from refilc/android/app/src/main/res/drawable/ic_grades.png rename to filcnaplo/android/app/src/main/res/drawable/ic_grades.png diff --git a/refilc/android/app/src/main/res/drawable/ic_home.png b/filcnaplo/android/app/src/main/res/drawable/ic_home.png similarity index 100% rename from refilc/android/app/src/main/res/drawable/ic_home.png rename to filcnaplo/android/app/src/main/res/drawable/ic_home.png diff --git a/refilc/android/app/src/main/res/drawable/ic_messages.png b/filcnaplo/android/app/src/main/res/drawable/ic_messages.png similarity index 100% rename from refilc/android/app/src/main/res/drawable/ic_messages.png rename to filcnaplo/android/app/src/main/res/drawable/ic_messages.png diff --git a/refilc/android/app/src/main/res/drawable/ic_notification.png b/filcnaplo/android/app/src/main/res/drawable/ic_notification.png similarity index 100% rename from refilc/android/app/src/main/res/drawable/ic_notification.png rename to filcnaplo/android/app/src/main/res/drawable/ic_notification.png diff --git a/refilc/android/app/src/main/res/drawable/ic_timetable.png b/filcnaplo/android/app/src/main/res/drawable/ic_timetable.png similarity index 100% rename from refilc/android/app/src/main/res/drawable/ic_timetable.png rename to filcnaplo/android/app/src/main/res/drawable/ic_timetable.png diff --git a/refilc/android/app/src/main/res/drawable/launch_background.xml b/filcnaplo/android/app/src/main/res/drawable/launch_background.xml similarity index 100% rename from refilc/android/app/src/main/res/drawable/launch_background.xml rename to filcnaplo/android/app/src/main/res/drawable/launch_background.xml diff --git a/refilc/android/app/src/main/res/font/montserrat_medium.ttf b/filcnaplo/android/app/src/main/res/font/montserrat_medium.ttf similarity index 100% rename from refilc/android/app/src/main/res/font/montserrat_medium.ttf rename to filcnaplo/android/app/src/main/res/font/montserrat_medium.ttf diff --git a/refilc/android/app/src/main/res/ic_launcher-web.png b/filcnaplo/android/app/src/main/res/ic_launcher-web.png similarity index 100% rename from refilc/android/app/src/main/res/ic_launcher-web.png rename to filcnaplo/android/app/src/main/res/ic_launcher-web.png diff --git a/refilc/android/app/src/main/res/layout/home_widget_test.xml b/filcnaplo/android/app/src/main/res/layout/home_widget_test.xml similarity index 95% rename from refilc/android/app/src/main/res/layout/home_widget_test.xml rename to filcnaplo/android/app/src/main/res/layout/home_widget_test.xml index f0a315a..b12af8d 100644 --- a/refilc/android/app/src/main/res/layout/home_widget_test.xml +++ b/filcnaplo/android/app/src/main/res/layout/home_widget_test.xml @@ -1,26 +1,26 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/layout/timetable_item.xml b/filcnaplo/android/app/src/main/res/layout/timetable_item.xml similarity index 96% rename from refilc/android/app/src/main/res/layout/timetable_item.xml rename to filcnaplo/android/app/src/main/res/layout/timetable_item.xml index f057d2d..aa23af8 100644 --- a/refilc/android/app/src/main/res/layout/timetable_item.xml +++ b/filcnaplo/android/app/src/main/res/layout/timetable_item.xml @@ -1,113 +1,113 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/refilc/android/app/src/main/res/layout/widget_timetable.xml b/filcnaplo/android/app/src/main/res/layout/widget_timetable.xml similarity index 97% rename from refilc/android/app/src/main/res/layout/widget_timetable.xml rename to filcnaplo/android/app/src/main/res/layout/widget_timetable.xml index 86aaea9..69b80b0 100644 --- a/refilc/android/app/src/main/res/layout/widget_timetable.xml +++ b/filcnaplo/android/app/src/main/res/layout/widget_timetable.xml @@ -1,232 +1,232 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -