├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | ### JetBrains template 4 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 5 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 6 | 7 | # User-specific stuff 8 | .idea/**/workspace.xml 9 | .idea/**/tasks.xml 10 | .idea/**/usage.statistics.xml 11 | .idea/**/dictionaries 12 | .idea/**/shelf 13 | 14 | # Generated files 15 | .idea/**/contentModel.xml 16 | 17 | # Sensitive or high-churn files 18 | .idea/**/dataSources/ 19 | .idea/**/dataSources.ids 20 | .idea/**/dataSources.local.xml 21 | .idea/**/sqlDataSources.xml 22 | .idea/**/dynamic.xml 23 | .idea/**/uiDesigner.xml 24 | .idea/**/dbnavigator.xml 25 | 26 | # Gradle 27 | .idea/**/gradle.xml 28 | .idea/**/libraries 29 | 30 | # Gradle and Maven with auto-import 31 | # When using Gradle or Maven with auto-import, you should exclude module files, 32 | # since they will be recreated, and may cause churn. Uncomment if using 33 | # auto-import. 34 | # .idea/artifacts 35 | # .idea/compiler.xml 36 | # .idea/jarRepositories.xml 37 | # .idea/modules.xml 38 | # .idea/*.iml 39 | # .idea/modules 40 | # *.iml 41 | # *.ipr 42 | 43 | # CMake 44 | cmake-build-*/ 45 | 46 | # Mongo Explorer plugin 47 | .idea/**/mongoSettings.xml 48 | 49 | # File-based project format 50 | *.iws 51 | 52 | # IntelliJ 53 | out/ 54 | 55 | # mpeltonen/sbt-idea plugin 56 | .idea_modules/ 57 | 58 | # JIRA plugin 59 | atlassian-ide-plugin.xml 60 | 61 | # Cursive Clojure plugin 62 | .idea/replstate.xml 63 | 64 | # Crashlytics plugin (for Android Studio and IntelliJ) 65 | com_crashlytics_export_strings.xml 66 | crashlytics.properties 67 | crashlytics-build.properties 68 | fabric.properties 69 | 70 | # Editor-based Rest Client 71 | .idea/httpRequests 72 | 73 | # Android studio 3.1+ serialized cache file 74 | .idea/caches/build_file_checksums.ser 75 | 76 | ### Android template 77 | # Built application files 78 | *.apk 79 | *.aar 80 | *.ap_ 81 | *.aab 82 | 83 | # Files for the ART/Dalvik VM 84 | *.dex 85 | 86 | # Java class files 87 | *.class 88 | 89 | # Generated files 90 | bin/ 91 | gen/ 92 | out/ 93 | # Uncomment the following line in case you need and you don't have the release build type files in your app 94 | # release/ 95 | 96 | # Gradle files 97 | .gradle/ 98 | build/ 99 | 100 | # Local configuration file (sdk path, etc) 101 | local.properties 102 | 103 | # Proguard folder generated by Eclipse 104 | proguard/ 105 | 106 | # Log Files 107 | *.log 108 | 109 | # Android Studio Navigation editor temp files 110 | .navigation/ 111 | 112 | # Android Studio captures folder 113 | captures/ 114 | 115 | # IntelliJ 116 | *.iml 117 | .idea/workspace.xml 118 | .idea/tasks.xml 119 | .idea/gradle.xml 120 | .idea/assetWizardSettings.xml 121 | .idea/dictionaries 122 | .idea/libraries 123 | # Android Studio 3 in .gitignore file. 124 | .idea/caches 125 | .idea/modules.xml 126 | # Comment next line if keeping position of elements in Navigation Editor is relevant for you 127 | .idea/navEditor.xml 128 | 129 | # Keystore files 130 | # Uncomment the following lines if you do not want to check your keystore files in. 131 | #*.jks 132 | #*.keystore 133 | 134 | # External native build folder generated in Android Studio 2.2 and later 135 | .externalNativeBuild 136 | .cxx/ 137 | 138 | # Google Services (e.g. APIs or Firebase) 139 | # google-services.json 140 | 141 | # Freeline 142 | freeline.py 143 | freeline/ 144 | freeline_project_description.json 145 | 146 | # fastlane 147 | fastlane/report.xml 148 | fastlane/Preview.html 149 | fastlane/screenshots 150 | fastlane/test_output 151 | fastlane/readme.md 152 | 153 | # Version control 154 | vcs.xml 155 | 156 | # lint 157 | lint/intermediates/ 158 | lint/generated/ 159 | lint/outputs/ 160 | lint/tmp/ 161 | # lint/reports/ 162 | 163 | # Android Profiling 164 | *.hprof 165 | 166 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SpaceTrader 2 | 3 | Android port of Pieter Sproncks Space Trader for PalmOS. 4 | 5 | This is now maintained at https://codeberg.org/blindcoder/SpaceTrader 6 | --------------------------------------------------------------------------------