Reputation: 1355
After getting the latest Android Open Source Project (AOSP) source code and built it on a Mac, I get a Mac version of adb in /aosp/out/host/darwin-x86/bin/adb. That's expected.
How can I build a Windows version of adb on a Mac?
Upvotes: 0
Views: 2096
Reputation: 11
In the AOSP ,build the adb.exe steps:
source build/envsetup.sh
lunchchoice **aosp_x86-eng** number
make host_cross_adb -j16
Upvotes: 1
Reputation: 15766
After Googling a little bit I found a GitHub project. This may work for you.
Upvotes: 1