Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diewland/handmade-slideshow
Simple Slideshow for Android. Support image and video
https://github.com/diewland/handmade-slideshow
Last synced: 2 days ago
JSON representation
Simple Slideshow for Android. Support image and video
- Host: GitHub
- URL: https://github.com/diewland/handmade-slideshow
- Owner: diewland
- License: mit
- Created: 2020-07-21T09:04:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T05:16:10.000Z (4 months ago)
- Last Synced: 2024-07-09T09:32:05.088Z (4 months ago)
- Language: Kotlin
- Size: 56.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Handmade Slideshow
for Android
#### Installation
```
git submodule add https://github.com/diewland/handmade-slideshow.git app/src/main/java/com/diewland/hmslideshow
git submodule update --init --recursive
```Add EXO Player library to `app/build.gradle`
```
implementation 'com.google.android.exoplayer:exoplayer:2.14.0'
```#### Update submodule
```
git submodule update --remote --recursive
```#### Demo Project
https://github.com/diewland/handmade-slideshow-demo
---
#### Remove submodule
```
# Remove the submodule entry from .git/config
git submodule deinit -f path/to/submodule# Remove the submodule directory from the superproject's .git/modules directory
rm -rf .git/modules/path/to/submodule# Remove the entry in .gitmodules and remove the submodule directory located at path/to/submodule
git rm -f path/to/submodule
```
https://stackoverflow.com/a/36593218/466693