1

Google has released Google IO 13 Android App source code.

After git clone and importing project, I got lot of issues while building, which you can find here. After passing all the issues, it now says:

Could not find HomeActivity.apk!

Here is a screenshot of my build process:

Build screenshot

How can I build the source code?

durron597
  • 31,968
  • 17
  • 99
  • 158
Basavaraj Hampali
  • 3,905
  • 1
  • 19
  • 22

3 Answers3

6

The iosched 2013 application was developed with Android Studio IDE and not with Eclipse, the whole file structure is different, this is why eclipse can't find some of the project's files.

You can download the Android Studio from here: Android Studio

  • is there any way to port that code to eclipse . dont want to go to studio till a stable version arrives – Basavaraj Hampali Aug 09 '13 at 04:40
  • As far as I know no, there is no way to port it since eclipse + the eclipse's android plugin do not support the new build system. About Android Studio stability, I've been working with it for more then a month and currently now it's much more stable the eclipse, even in it's "Preview" version. –  Aug 09 '13 at 07:30
  • yes there is no way . Android SDK tech lead XAV also mentions that http://stackoverflow.com/a/16747412/1506239 – Basavaraj Hampali Aug 09 '13 at 13:47
6

In case somebody still couldn't find IOSched 2013 for Eclipse. I have the ported version in here :

https://github.com/yodiaditya/iosched-2013-eclipse

yodi
  • 942
  • 8
  • 10
4

On my GitHub mirror, I have an eclipse branch that have the changes I mentioned in the Google Code issues page to make it work. It launch and seems to runs fine on my phone (although I didn't test much further than that).

You will need to adjust the reference to both /sdk/extras/android/support/v7/appcompat and /google-play-services_lib library projects to match your setup before it can compile on your machine.

UPDATE 1: This commit added the appcompat and google-play-services_lib projects into the repo for easier access.

UPDATE 2: Now updated with latest version (iosched 2014).

Joe
  • 14,039
  • 2
  • 39
  • 49