Ardityo Cahyo
Ardityo Cahyo

Reputation: 55

How to Convert "Android Open Source Project App" to Gradle Android Studio?

It's my first time seeing a Project but it's not look like Android Studio Project i've seen before.

git clone https://android.googlesource.com/platform/packages/apps/Music

my friend send me this and i want to develop it like i always doin'. but it cannot. cuz its not Gradle Project. So, how can i convert it?

Upvotes: 1

Views: 445

Answers (2)

HucKQC
HucKQC

Reputation: 61

I agree AOSP does not use Gradle however there is AIDEGen that helps you prepare parts of AOSP for editing through Android Studio or IntelliJ.

AIDEGen

This tool is far from perfect, but gives you a starting point to edit and make change to the source files. You'll have to keep using Android build system. Finally, this tool is Android 10 +

AOSP Other Tools

Upvotes: 2

Onik
Onik

Reputation: 19989

So, how can i convert it?

You can't. AOSP doesn't use Gradle as build system.

Upvotes: 0

Related Questions