https://github.com/jyothsnasrinivas/eta-android-animation
Eta Android Animation example
https://github.com/jyothsnasrinivas/eta-android-animation
android eta functional-programming haskell
Last synced: 4 months ago
JSON representation
Eta Android Animation example
- Host: GitHub
- URL: https://github.com/jyothsnasrinivas/eta-android-animation
- Owner: Jyothsnasrinivas
- License: bsd-3-clause
- Created: 2018-03-19T15:02:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T10:13:26.000Z (over 7 years ago)
- Last Synced: 2025-05-30T06:07:14.710Z (5 months ago)
- Topics: android, eta, functional-programming, haskell
- Language: Haskell
- Homepage:
- Size: 15.1 MB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Eta Android Animation Example

## Prerequisites
- JDK 8 or above
## Running
1. Clone the sources.
```
$ git clone https://github.com/Jyothsnasrinivas/eta-android-2048.git
$ cd eta-android-2048
```
2. Add your Android SDK path in `local.properties`.
local.properties
```
sdk.dir=[SDK-Path-Here]
```
The easiest way to complete this step is to copy the `local.properties` file from an existing Android Studio project.
3. Build the APK.
```
$ ./gradlew assembleDebug
```
## Testing on mobile or emulator
If you want to test it on your phone first enable the developer mode and run the command below. Similarly for testing on emulator.
```
$ ./gradlew installDebug
```
## Release APK
If you want to build the release apk which has proguard enabled, run the command below:
```
$ ./gradlew assembleRelease
```