Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kotlinoid/composesampleappandroid
The ultimate app for Android users. Download now and start composing your own masterpieces.
https://github.com/kotlinoid/composesampleappandroid
android-application android-development android-studio compose-multiplatform desktop windows
Last synced: 20 days ago
JSON representation
The ultimate app for Android users. Download now and start composing your own masterpieces.
- Host: GitHub
- URL: https://github.com/kotlinoid/composesampleappandroid
- Owner: kotlinoid
- Created: 2024-07-30T01:24:00.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-07-30T07:16:16.000Z (4 months ago)
- Last Synced: 2024-10-09T14:44:26.933Z (about 1 month ago)
- Topics: android-application, android-development, android-studio, compose-multiplatform, desktop, windows
- Language: Kotlin
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
COMPOSESAMPLEAPPANDROID
Developed with the software and tools below.
## Quick Links
> - [ Overview](#-overview)
> - [ Features](#-features)
> - [ Repository Structure](#-repository-structure)
> - [ Modules](#-modules)
> - [ Getting Started](#-getting-started)
> - [ Installation](#-installation)
> - [ Running ComposeSampleAppAndroid](#-running-ComposeSampleAppAndroid)
> - [ Tests](#-tests)
> - [ Project Roadmap](#-project-roadmap)
> - [ Contributing](#-contributing)
> - [ License](#-license)
> - [ Acknowledgments](#-acknowledgments)---
## Repository Structure
```sh
└── ComposeSampleAppAndroid/
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ ├── androidTest
│ │ └── java
│ │ └── com
│ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ └── res
│ │ ├── drawable
│ │ ├── mipmap-anydpi
│ │ ├── mipmap-hdpi
│ │ ├── mipmap-mdpi
│ │ ├── mipmap-xhdpi
│ │ ├── mipmap-xxhdpi
│ │ ├── mipmap-xxxhdpi
│ │ ├── values
│ │ └── xml
│ └── test
│ └── java
│ └── com
├── build.gradle.kts
├── gradle
│ ├── libs.versions.toml
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
```---
## Modules
.
| File | Summary |
| --- | --- |
| [settings.gradle.kts](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/settings.gradle.kts) | HTTP error 401 for prompt `settings.gradle.kts` |
| [build.gradle.kts](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/build.gradle.kts) | HTTP error 401 for prompt `build.gradle.kts` |
| [gradlew.bat](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/gradlew.bat) | HTTP error 401 for prompt `gradlew.bat` |gradle
| File | Summary |
| --- | --- |
| [libs.versions.toml](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/gradle/libs.versions.toml) | HTTP error 401 for prompt `gradle/libs.versions.toml` |app
| File | Summary |
| --- | --- |
| [proguard-rules.pro](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/proguard-rules.pro) | HTTP error 401 for prompt `app/proguard-rules.pro` |
| [build.gradle.kts](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/build.gradle.kts) | HTTP error 401 for prompt `app/build.gradle.kts` |app.src.main.java.com.piyush.composesampleappandroid
| File | Summary |
| --- | --- |
| [MainActivity.kt](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/src/main/java/com/piyush/composesampleappandroid/MainActivity.kt) | HTTP error 401 for prompt `app/src/main/java/com/piyush/composesampleappandroid/MainActivity.kt` |app.src.main.java.com.piyush.composesampleappandroid.ui.theme
| File | Summary |
| --- | --- |
| [Color.kt](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/src/main/java/com/piyush/composesampleappandroid/ui/theme/Color.kt) | HTTP error 401 for prompt `app/src/main/java/com/piyush/composesampleappandroid/ui/theme/Color.kt` |
| [Type.kt](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/src/main/java/com/piyush/composesampleappandroid/ui/theme/Type.kt) | HTTP error 401 for prompt `app/src/main/java/com/piyush/composesampleappandroid/ui/theme/Type.kt` |
| [Theme.kt](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/src/main/java/com/piyush/composesampleappandroid/ui/theme/Theme.kt) | HTTP error 401 for prompt `app/src/main/java/com/piyush/composesampleappandroid/ui/theme/Theme.kt` |app.src.androidTest.java.com.piyush.composesampleappandroid
| File | Summary |
| --- | --- |
| [ExampleInstrumentedTest.kt](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/src/androidTest/java/com/piyush/composesampleappandroid/ExampleInstrumentedTest.kt) | HTTP error 401 for prompt `app/src/androidTest/java/com/piyush/composesampleappandroid/ExampleInstrumentedTest.kt` |app.src.test.java.com.piyush.composesampleappandroid
| File | Summary |
| --- | --- |
| [ExampleUnitTest.kt](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/master/app/src/test/java/com/piyush/composesampleappandroid/ExampleUnitTest.kt) | HTTP error 401 for prompt `app/src/test/java/com/piyush/composesampleappandroid/ExampleUnitTest.kt` |---
## Getting Started
***Requirements***
Ensure you have the following dependencies installed on your system:
* **Kotlin**: `version x.y.z`
### Installation
1. Clone the ComposeSampleAppAndroid repository:
```sh
git clone https://github.com/kotlinoid/ComposeSampleAppAndroid
```2. Change to the project directory:
```sh
cd ComposeSampleAppAndroid
```3. Install the dependencies:
```sh
gradle build
```### Running ComposeSampleAppAndroid
Use the following command to run ComposeSampleAppAndroid:
```sh
java -jar build/libs/myapp.jar
```### Tests
To execute tests, run:
```sh
gradle test
```---
## Project Roadmap
- [X] `► INSERT-TASK-1`
- [ ] `► INSERT-TASK-2`
- [ ] `► ...`---
## Contributing
Contributions are welcome! Here are several ways you can contribute:
- **[Submit Pull Requests](https://github.com/kotlinoid/ComposeSampleAppAndroid/blob/main/CONTRIBUTING.md)**: Review open PRs, and submit your own PRs.
- **[Join the Discussions](https://github.com/kotlinoid/ComposeSampleAppAndroid/discussions)**: Share your insights, provide feedback, or ask questions.
- **[Report Issues](https://github.com/kotlinoid/ComposeSampleAppAndroid/issues)**: Submit bugs found or log feature requests for Composesampleappandroid.Contributing Guidelines
1. **Fork the Repository**: Start by forking the project repository to your GitHub account.
2. **Clone Locally**: Clone the forked repository to your local machine using a Git client.
```sh
git clone https://github.com/kotlinoid/ComposeSampleAppAndroid
```
3. **Create a New Branch**: Always work on a new branch, giving it a descriptive name.
```sh
git checkout -b new-feature-x
```
4. **Make Your Changes**: Develop and test your changes locally.
5. **Commit Your Changes**: Commit with a clear message describing your updates.
```sh
git commit -m 'Implemented new feature x.'
```
6. **Push to GitHub**: Push the changes to your forked repository.
```sh
git push origin new-feature-x
```
7. **Submit a Pull Request**: Create a PR against the original project repository. Clearly describe the changes and their motivations.Once your PR is reviewed and approved, it will be merged into the main branch.
---
## Acknowledgments
- List any resources, contributors, inspiration, etc. here.
[**Return**](#-quick-links)
---