├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── LICENSE ├── README.markdown ├── assets └── address_book.file ├── libs └── protobuf-java-2.4.1.jar ├── proguard.cfg ├── project.properties ├── proto └── addressbook.proto ├── res ├── drawable-hdpi │ └── icon.png ├── drawable-ldpi │ └── icon.png ├── drawable-mdpi │ └── icon.png ├── layout │ ├── person.xml │ └── phone_number.xml ├── menu │ └── menu.xml └── values │ └── strings.xml └── src └── com └── example ├── android ├── AddressBookActivity.java └── PersonActivity.java └── tutorial └── AddressBookProtos.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | local.properties 3 | bin/ 4 | gen/ 5 | 6 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/README.markdown -------------------------------------------------------------------------------- /assets/address_book.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/assets/address_book.file -------------------------------------------------------------------------------- /libs/protobuf-java-2.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/libs/protobuf-java-2.4.1.jar -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/proguard.cfg -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/project.properties -------------------------------------------------------------------------------- /proto/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/proto/addressbook.proto -------------------------------------------------------------------------------- /res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /res/layout/person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/res/layout/person.xml -------------------------------------------------------------------------------- /res/layout/phone_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/res/layout/phone_number.xml -------------------------------------------------------------------------------- /res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/res/menu/menu.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/example/android/AddressBookActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/src/com/example/android/AddressBookActivity.java -------------------------------------------------------------------------------- /src/com/example/android/PersonActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/src/com/example/android/PersonActivity.java -------------------------------------------------------------------------------- /src/com/example/tutorial/AddressBookProtos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-protobuf-example/HEAD/src/com/example/tutorial/AddressBookProtos.java --------------------------------------------------------------------------------