timsu/android-aac-enc

Missing files ?

rogerclarkmelbourne opened this issue · 2 comments

Hi,
I'm getting compile errors because of references to

import com.todoroo.aacenc.R;

But no such file exists

Also in package com.todoroo.aacenc;
various errors due to references to R e.g.

    setContentView(R.layout.main);

Roger,

R is automatically generated by the Android build system (and placed in the gen/ folder).

If you imported into Eclipse, you probably imported as a Java project instead of an Android project. If you need a standalone Java version, this probably isn't the project for you, since it depends on native arm7 code for encoding.

Sorry. My mistake. I'll try importing as an Android project.
As I do need a Android version (rather than standalone Java).