Commit ba672004 by Lee Jaebin

ABookSee削除、カスタマイズフォルダ削除、checkのリソースを反映

parent 5b7f20f1

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

...@@ -9,9 +9,6 @@ ABVJE_Res_Default_Android/proguard-project.txt ...@@ -9,9 +9,6 @@ ABVJE_Res_Default_Android/proguard-project.txt
ABVJE_UI_Android/build.xml ABVJE_UI_Android/build.xml
ABVJE_UI_Android/local.properties ABVJE_UI_Android/local.properties
ABVJE_UI_Android/proguard-project.txt ABVJE_UI_Android/proguard-project.txt
RES_CUSTOMIZE/ABVJE_Res_KTNG/build.xml
RES_CUSTOMIZE/ABVJE_Res_KTNG/local.properties
RES_CUSTOMIZE/ABVJE_Res_KTNG/proguard-project.txt
LIB_GooglePlayServices/build.xml LIB_GooglePlayServices/build.xml
LIB_GooglePlayServices/local.properties LIB_GooglePlayServices/local.properties
LIB_GooglePlayServices/proguard-project.txt LIB_GooglePlayServices/proguard-project.txt
......
apply plugin: 'com.android.library'
android {
compileSdkVersion 21
buildToolsVersion '27.0.3'
defaultConfig {
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
api files('libs/voipclient_binterface.jar')
api 'com.android.support:appcompat-v7:21.0.+'
}
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Users\ThanhChung\AppData\Local\Android\sdk1/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
package com.example.thanhchung.abvje_abooksee;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.agentec.abook.abv.abooksee">
<uses-permission android:name="android.permission.BLUETOOTH" />
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/ico_exit_pressed" />
<item android:state_pressed="false" android:drawable="@drawable/ico_exit_normal"/>
</selector>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment