Skip to content

Instantly share code, notes, and snippets.

View ariefnurputranto's full-sized avatar

Arief Nur Putranto ariefnurputranto

View GitHub Profile
libraryGroupId=yuana.id
libraryArtifactId=anu
libraryVersion=1.0.0
@ariefnurputranto
ariefnurputranto / running-project-locally.txt
Created February 3, 2022 07:45 — forked from adicatur/running-project-locally.txt
Running Project Locally (Multiple module)
Step 1: In `settings.gradle` copy paste the following code:
```bash
include 'project-name'
project(':project-name').projectDir = new File('project path')
```
Step 2: In your `builde.gradle` copy paste the following code, your project-name module:
```bash