├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── github │ │ └── martoreto │ │ └── aauto │ │ └── exlap │ │ ├── IExlapService.aidl │ │ ├── IExlapServiceListener.aidl │ │ └── IExlapSessionListener.aidl │ ├── java │ └── com │ │ └── github │ │ └── martoreto │ │ └── aauto │ │ └── vex │ │ └── vag │ │ ├── ExlapCarStatsService.java │ │ ├── ExlapProxyService.java │ │ ├── ExlapReader.java │ │ ├── ExlapSessionService.java │ │ └── ExlapUtils.java │ └── res │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values │ └── strings.xml │ └── xml │ └── automotive_app_desc.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/aidl/com/github/martoreto/aauto/exlap/IExlapService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/aidl/com/github/martoreto/aauto/exlap/IExlapService.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/com/github/martoreto/aauto/exlap/IExlapServiceListener.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/aidl/com/github/martoreto/aauto/exlap/IExlapServiceListener.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/com/github/martoreto/aauto/exlap/IExlapSessionListener.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/aidl/com/github/martoreto/aauto/exlap/IExlapSessionListener.aidl -------------------------------------------------------------------------------- /app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapCarStatsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapCarStatsService.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapProxyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapProxyService.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapReader.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapSessionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapSessionService.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/java/com/github/martoreto/aauto/vex/vag/ExlapUtils.java -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/app/src/main/res/xml/automotive_app_desc.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martoreto/aauto-vex-vag/HEAD/settings.gradle --------------------------------------------------------------------------------