Browse Source

版本5.8.8

SpringBoots 8 years ago
parent
commit
6bdd9321fc
41 changed files with 631 additions and 0 deletions
  1. 1 0
      app_third/MPAndroidChart/.gitignore
  2. 24 0
      app_third/MPAndroidChart/build.gradle
  3. 17 0
      app_third/MPAndroidChart/proguard-rules.pro
  4. 3 0
      app_third/lib-zxing/.gitignore
  5. 40 0
      app_third/lib-zxing/build.gradle
  6. 17 0
      app_third/lib-zxing/proguard-rules.pro
  7. 1 0
      app_third/libbdupdatesdk/.gitignore
  8. 25 0
      app_third/libbdupdatesdk/build.gradle
  9. BIN
      app_third/libbdupdatesdk/libs/BDAutoUpdate_APPX_SDK_20150826.jar
  10. BIN
      app_third/libbdupdatesdk/libs/android_api_3.6.9.3.jar
  11. BIN
      app_third/libbdupdatesdk/libs/need_lib.jar
  12. BIN
      app_third/libbdupdatesdk/libs/patchupdate.jar
  13. 17 0
      app_third/libbdupdatesdk/proguard-rules.pro
  14. 61 0
      app_third/libbdupdatesdk/src/main/AndroidManifest.xml
  15. BIN
      app_third/libbdupdatesdk/src/main/jniLibs/armeabi/libMD5_v1.so
  16. BIN
      app_third/libbdupdatesdk/src/main/jniLibs/armeabi/libbase64encoder_v1_4.so
  17. BIN
      app_third/libbdupdatesdk/src/main/jniLibs/x86/libMD5_v1.so
  18. BIN
      app_third/libbdupdatesdk/src/main/jniLibs/x86/libbase64encoder_v1_4.so
  19. BIN
      app_third/libbdupdatesdk/src/main/res/drawable-mdpi/bdp_update_logo.png
  20. 14 0
      app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_bg_dialog_btn.xml
  21. 14 0
      app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_bg_dialog_content.xml
  22. 14 0
      app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_bg_dialog_title.xml
  23. 15 0
      app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_progress_download.xml
  24. 102 0
      app_third/libbdupdatesdk/src/main/res/layout/bdp_update_activity_confirm_dialog.xml
  25. 26 0
      app_third/libbdupdatesdk/src/main/res/values/bdp_update_strings.xml
  26. 25 0
      app_third/libbdupdatesdk/src/main/res/values/bdp_update_styles.xml
  27. 1 0
      app_third/libedittextformlibrary/.gitignore
  28. 25 0
      app_third/libedittextformlibrary/build.gradle
  29. 17 0
      app_third/libedittextformlibrary/proguard-rules.pro
  30. 1 0
      app_third/libfloatingactionbutton/.gitignore
  31. 24 0
      app_third/libfloatingactionbutton/build.gradle
  32. 17 0
      app_third/libfloatingactionbutton/proguard-rules.pro
  33. 1 0
      app_third/library-refreshlayout/.gitignore
  34. 23 0
      app_third/library-refreshlayout/build.gradle
  35. 3 0
      app_third/library-refreshlayout/gradle.properties
  36. 17 0
      app_third/library-refreshlayout/proguard-rules.pro
  37. 1 0
      app_third/library-swipemenu_lv/.gitignore
  38. 26 0
      app_third/library-swipemenu_lv/build.gradle
  39. 17 0
      app_third/library-swipemenu_lv/proguard-rules.pro
  40. 22 0
      app_third/library-viewpager-indicator/build.gradle
  41. 20 0
      app_third/pullToRefershLibraryMy/build.gradle

+ 1 - 0
app_third/MPAndroidChart/.gitignore

@@ -0,0 +1 @@
+/build

+ 24 - 0
app_third/MPAndroidChart/build.gradle

@@ -0,0 +1,24 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+        versionCode 1
+        versionName "1.0"
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(dir: 'libs', include: ['*.jar'])
+    compile 'com.android.support:appcompat-v7:24.2.1'
+}

+ 17 - 0
app_third/MPAndroidChart/proguard-rules.pro

@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in C:\Android\sdk/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 *;
+#}

+ 3 - 0
app_third/lib-zxing/.gitignore

@@ -0,0 +1,3 @@
+/build
+!/build/outputs/mapping/release/*
+*.iml

+ 40 - 0
app_third/lib-zxing/build.gradle

@@ -0,0 +1,40 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+        versionCode 1
+        versionName "1.0"
+
+        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(include: ['*.jar'], dir: 'libs')
+    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
+        exclude group: 'com.android.support', module: 'support-annotations'
+    })
+    compile files('libs/zxing.jar')
+    compile 'com.android.support:appcompat-v7:24.2.1'
+    testCompile 'junit:junit:4.12'
+}
+
+ext {
+    PUBLISH_GROUP_ID = 'cn.yipianfengye.android'
+    PUBLISH_ARTIFACT_ID = 'zxing-library'
+    PUBLISH_VERSION = '1.9'
+}
+
+//apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'

+ 17 - 0
app_third/lib-zxing/proguard-rules.pro

@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /Users/aaron/document/sdk/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 *;
+#}

+ 1 - 0
app_third/libbdupdatesdk/.gitignore

@@ -0,0 +1 @@
+/build

+ 25 - 0
app_third/libbdupdatesdk/build.gradle

@@ -0,0 +1,25 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+        versionCode 1
+        versionName "1.0"
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(dir: 'libs', include: ['*.jar'])
+    testCompile 'junit:junit:4.12'
+    compile 'com.android.support:appcompat-v7:24.2.1'
+}

BIN
app_third/libbdupdatesdk/libs/BDAutoUpdate_APPX_SDK_20150826.jar


BIN
app_third/libbdupdatesdk/libs/android_api_3.6.9.3.jar


BIN
app_third/libbdupdatesdk/libs/need_lib.jar


BIN
app_third/libbdupdatesdk/libs/patchupdate.jar


+ 17 - 0
app_third/libbdupdatesdk/proguard-rules.pro

@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in C:\Android\sdk/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 *;
+#}

+ 61 - 0
app_third/libbdupdatesdk/src/main/AndroidManifest.xml

@@ -0,0 +1,61 @@
+<?xml version="1.0"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.baidu.integrationsdk.lib"
+    android:versionCode="1"
+    android:versionName="1.0" >
+
+    <application>
+
+        <!-- ↓↓↓ 百度移动统计SDK ↓↓↓ -->
+        <!-- 是否开启错误日志统计,默认为false -->
+        <meta-data
+            android:name="BaiduMobAd_EXCEPTION_LOG"
+            android:value="true" />
+        <!-- 日志发送策略,可选值:APP_START、ONCE_A_DAY、SET_TIME_INTERVAL,默认为APP_START -->
+        <meta-data
+            android:name="BaiduMobAd_SEND_STRATEGY"
+            android:value="APP_START" />
+        <!-- 日志发送策略 为SET_TIME_INTERVAL时,需设定时间间隔(取消下行注释)。取值为1-24的整数,默认为1 -->
+        <!-- <meta-data android:name="BaiduMobAd_TIME_INTERVAL" android:value="2" /> -->
+        <!-- 日志仅在wifi网络下发送,默认为false -->
+        <meta-data
+            android:name="BaiduMobAd_ONLY_WIFI"
+            android:value="false" />
+        <!-- 是否获取基站位置信息 ,默认为true -->
+        <meta-data
+            android:name="BaiduMobAd_CELL_LOCATION"
+            android:value="true" />
+        <!-- 是否获取GPS位置信息,默认为true -->
+        <meta-data
+            android:name="BaiduMobAd_GPS_LOCATION"
+            android:value="true" />
+        <!-- 是否获取WIFI位置信息,默认为true -->
+        <meta-data
+            android:name="BaiduMobAd_WIFI_LOCATION"
+            android:value="true" />
+        <!-- ↑↑↑ 百度移动统计SDK ↑↑↑ -->
+        <!-- android:theme="@style/bdp_update_dialog_style_fullscreen" -->
+
+        <receiver
+            android:name="com.baidu.autoupdatesdk.receiver.BDBroadcastReceiver"
+            android:exported="false" >
+            <intent-filter>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_NEW_UPDATE" />
+                <action android:name="com.baidu.autoupdatesdk.ACTION_DOWNLOAD_COMPLETE" />
+                <action android:name="com.baidu.autoupdatesdk.ACTION_NEW_AS" />
+                <action android:name="com.baidu.autoupdatesdk.ACTION_AS_DOWNLOAD_COMPLETE" />
+            </intent-filter>
+        </receiver>
+    </application>
+
+    <uses-permission android:name="android.permission.INTERNET" />
+    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
+    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
+    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
+    <uses-permission android:name="android.permission.GET_TASKS" />
+    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
+
+</manifest>

BIN
app_third/libbdupdatesdk/src/main/jniLibs/armeabi/libMD5_v1.so


BIN
app_third/libbdupdatesdk/src/main/jniLibs/armeabi/libbase64encoder_v1_4.so


BIN
app_third/libbdupdatesdk/src/main/jniLibs/x86/libMD5_v1.so


BIN
app_third/libbdupdatesdk/src/main/jniLibs/x86/libbase64encoder_v1_4.so


BIN
app_third/libbdupdatesdk/src/main/res/drawable-mdpi/bdp_update_logo.png


+ 14 - 0
app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_bg_dialog_btn.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <item>
+        <shape>
+            <corners android:radius="5dip" />
+            <solid android:color="#EE3B3B" />
+          <!--  <solid android:color="#ff44d7b3" />-->
+           
+            <padding android:bottom="0dip" android:left="0dip" android:right="0dip" android:top="0dip" />
+        </shape>
+    </item>
+
+</selector>

+ 14 - 0
app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_bg_dialog_content.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <item>
+        <shape>
+            <corners android:bottomLeftRadius="3dip" android:bottomRightRadius="3dip" android:topRightRadius="0dip" android:topLeftRadius="0dip" />
+
+            <solid android:color="#ffffffff" />
+
+            <padding android:bottom="0dip" android:left="0dip" android:right="0dip" android:top="0dip" />
+        </shape>
+    </item>
+
+</selector>

+ 14 - 0
app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_bg_dialog_title.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <item>
+        <shape>
+            <corners android:topRightRadius="3dip" android:topLeftRadius="3dip" android:bottomLeftRadius="0dip" android:bottomRightRadius="0dip" />
+
+            <solid android:color="#ff57b7fe" />
+
+            <padding android:bottom="0dip" android:left="0dip" android:right="0dip" android:top="0dip" />
+        </shape>
+    </item>
+
+</selector>

+ 15 - 0
app_third/libbdupdatesdk/src/main/res/drawable/bdp_update_progress_download.xml

@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+    <item android:id="@android:id/background">
+        <shape>
+            <solid android:color="#ff475867"/>
+        </shape>
+    </item>
+	<item android:id="@android:id/progress">
+	    <clip>
+	        <shape>
+	            <solid android:color="#ff129e00"/>
+	        </shape>
+        </clip>
+	</item>
+</layer-list>

+ 102 - 0
app_third/libbdupdatesdk/src/main/res/layout/bdp_update_activity_confirm_dialog.xml

@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:orientation="vertical"
+    android:background="@null" >
+    
+    <TextView 
+        android:id="@+id/txt_title"
+        android:layout_width="match_parent"
+        android:layout_height="40dip"
+        android:paddingLeft="18dip"
+        android:gravity="center_vertical"
+        android:textColor="#ffffffff"
+        android:textSize="16sp"
+        android:background="@drawable/bdp_update_bg_dialog_title"
+        />
+    
+    <LinearLayout 
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:paddingLeft="18dip"
+        android:paddingRight="18dip"
+        android:paddingTop="16dip"
+        android:paddingBottom="14dip"
+        android:background="@drawable/bdp_update_bg_dialog_content"
+        android:orientation="vertical">
+        
+        <TextView 
+            android:id="@+id/txt_main_tip"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_marginBottom="14dip"
+            android:singleLine="true"
+            android:ellipsize="end"
+            android:textColor="#ff58b6ff"
+            android:textSize="14sp"
+            />
+        
+        <ScrollView 
+	        android:layout_width="match_parent"
+	        android:layout_height="64dip"
+	        android:layout_marginBottom="10dip"
+	        android:fadingEdge="vertical"
+	        android:fadingEdgeLength="20dip"
+	        android:requiresFadingEdge="vertical"
+	        >
+	        
+	        <TextView 
+	            android:id="@+id/txt_minor_tip"
+	            android:layout_width="match_parent"
+	            android:layout_height="wrap_content"
+	            android:textColor="#ff333333"
+	            android:textSize="13sp"
+	            />
+	    </ScrollView>
+	    
+        <Button 
+            android:id="@+id/btn_action_1"
+            android:layout_width="match_parent"
+            android:layout_height="40dip"
+            android:layout_marginBottom="10dip"
+            android:textColor="#ffffffff"
+            android:textSize="14sp"
+            android:background="@drawable/bdp_update_bg_dialog_btn"
+            />
+        
+        <LinearLayout 
+            android:id="@+id/lin_other_btns"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:weightSum="2"
+            android:gravity="center"
+            android:orientation="horizontal">
+            
+            <TextView 
+                android:id="@+id/txt_action_2"
+                android:layout_width="0dip"
+                android:layout_height="wrap_content"
+                android:layout_weight="1"
+                android:textColor="#ffabbed9"
+                android:textSize="13sp"
+                android:gravity="center"
+                android:text="@string/bdp_update_not_now"
+                />
+            
+           <TextView 
+                android:id="@+id/txt_action_3"
+                android:layout_width="0dip"
+                android:layout_height="wrap_content"
+                android:layout_weight="0"
+                android:textColor="#ffabbed9"
+                android:textSize="13sp"
+                android:gravity="center"
+                android:enabled="false"
+                android:clickable="false"
+               android:visibility="gone"
+                android:text="@string/bdp_update_ignore"
+                />
+        </LinearLayout>
+    </LinearLayout>
+</LinearLayout>

+ 26 - 0
app_third/libbdupdatesdk/src/main/res/values/bdp_update_strings.xml

@@ -0,0 +1,26 @@
+<resources>
+
+    <string name="bdp_update_request_net_error">网络错误,请重试</string>
+    
+    <string name="bdp_update_title_download">发现新版本</string>
+    <string name="bdp_update_title_install">发现新版本安装包</string>
+    <string name="bdp_update_title_as">提示</string>
+    <string name="bdp_update_download_main_tip">%1$s → %2$s / %3$s</string>
+    <string name="bdp_update_install_main_tip">%1$s → %2$s</string>
+    <string name="bdp_update_minor_tip">更新内容:</string>
+    <string name="bdp_update_action_download">立即升级</string>
+    <string name="bdp_update_action_install">立即安装</string>
+    <string name="bdp_update_not_now">暂不升级</string>
+    <string name="bdp_update_ignore">忽略</string>
+    
+    <string name="bdp_update_new_download">发现新版本,点击更新</string>
+    <string name="bdp_update_download_complete">新版本下载完成,点击安装</string>
+    
+    <string name="bdp_update_as_notify_title">百度手机助手</string>
+    <string name="bdp_update_as_notify_tip">百度手机助手</string>
+    <string name="bdp_update_as_download_complete">百度手机助手下载完成</string>
+    <string name="bdp_update_as_install_tip">推荐您使用百度手机助手进行升级。您尚未安装百度手机助手,请先安装。</string>
+    <string name="bdp_update_as_action_install">安装</string>
+    <string name="bdp_update_as_action_cancel">取消</string>
+
+</resources>

+ 25 - 0
app_third/libbdupdatesdk/src/main/res/values/bdp_update_styles.xml

@@ -0,0 +1,25 @@
+<resources xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <style name="bdp_update_dialog_style" parent="android:Theme.Dialog">
+        <item name="android:windowFrame">@null</item>
+        <item name="android:windowIsFloating">true</item>
+        <item name="android:windowIsTranslucent">true</item> 
+        <item name="android:windowNoTitle">true</item><!--除去title-->
+        <item name="android:windowContentOverlay">@null</item> 
+        <item name="android:backgroundDimEnabled">true</item>
+        <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
+        <item name="android:windowBackground">@android:color/transparent</item>
+    </style>
+    
+    <style name="bdp_update_dialog_style_fullscreen" parent="@style/bdp_update_dialog_style">
+        <item name="android:windowFullscreen">true</item>
+    </style>
+    
+    <style name="bdp_update_progress_download">
+        <item name="android:indeterminateOnly">false</item>
+        <item name="android:progressDrawable">@drawable/bdp_update_progress_download</item>
+        <item name="android:minHeight">8dip</item>
+        <item name="android:maxHeight">8dip</item>
+    </style>
+
+</resources>

+ 1 - 0
app_third/libedittextformlibrary/.gitignore

@@ -0,0 +1 @@
+/build

+ 25 - 0
app_third/libedittextformlibrary/build.gradle

@@ -0,0 +1,25 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+        versionCode 1
+        versionName "1.0"
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(dir: 'libs', include: ['*.jar'])
+    testCompile 'junit:junit:4.12'
+    compile 'com.android.support:appcompat-v7:24.2.1'
+}

+ 17 - 0
app_third/libedittextformlibrary/proguard-rules.pro

@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in C:\Android\sdk/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 *;
+#}

+ 1 - 0
app_third/libfloatingactionbutton/.gitignore

@@ -0,0 +1 @@
+/build

+ 24 - 0
app_third/libfloatingactionbutton/build.gradle

@@ -0,0 +1,24 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+        versionCode 1
+        versionName "1.0"
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(dir: 'libs', include: ['*.jar'])
+    compile 'com.android.support:appcompat-v7:24.2.1'
+}

+ 17 - 0
app_third/libfloatingactionbutton/proguard-rules.pro

@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in C:\Android\sdk/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 *;
+#}

+ 1 - 0
app_third/library-refreshlayout/.gitignore

@@ -0,0 +1 @@
+/build

+ 23 - 0
app_third/library-refreshlayout/build.gradle

@@ -0,0 +1,23 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion '25.0.0'
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+        versionCode 8
+        versionName "1.2.3"
+    }
+    compileOptions {
+        sourceCompatibility JavaVersion.VERSION_1_7
+        targetCompatibility JavaVersion.VERSION_1_7
+    }
+}
+
+dependencies {
+    compile fileTree(include: ['*.jar'], dir: 'libs')
+    compile 'com.android.support:appcompat-v7:24.2.1'
+}
+

+ 3 - 0
app_third/library-refreshlayout/gradle.properties

@@ -0,0 +1,3 @@
+POM_NAME=Phoenix
+POM_ARTIFACT_ID=phoenix
+POM_PACKAGING=aar

+ 17 - 0
app_third/library-refreshlayout/proguard-rules.pro

@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /Users/baoyz/Developer/Android/sdk/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 *;
+#}

+ 1 - 0
app_third/library-swipemenu_lv/.gitignore

@@ -0,0 +1 @@
+/build

+ 26 - 0
app_third/library-swipemenu_lv/build.gradle

@@ -0,0 +1,26 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+    resourcePrefix "swipemenulistview"
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+        versionCode 1
+        versionName "1.0"
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(dir: 'libs', include: ['*.jar'])
+    compile 'com.android.support:appcompat-v7:24.2.1'
+}
+

+ 17 - 0
app_third/library-swipemenu_lv/proguard-rules.pro

@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /Users/baoyz/Developer/Android/sdk/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 *;
+#}

+ 22 - 0
app_third/library-viewpager-indicator/build.gradle

@@ -0,0 +1,22 @@
+apply plugin: 'com.android.library'
+
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+    }
+
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
+        }
+    }
+}
+
+dependencies {
+    compile 'com.android.support:appcompat-v7:24.2.1'
+}

+ 20 - 0
app_third/pullToRefershLibraryMy/build.gradle

@@ -0,0 +1,20 @@
+apply plugin: 'com.android.library'
+android {
+    compileSdkVersion 24
+    buildToolsVersion "25.0.0"
+    defaultConfig {
+        minSdkVersion 9
+        targetSdkVersion 24
+    }
+
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
+        }
+    }
+}
+
+dependencies {
+    compile project(':MPAndroidChart')
+}