FANGLH 8 years ago
parent
commit
b86e502f9c
35 changed files with 3 additions and 185 deletions
  1. 0 1
      app_modular/appme/.gitignore
  2. 0 35
      app_modular/appme/build.gradle
  3. 0 25
      app_modular/appme/proguard-rules.pro
  4. 0 9
      app_modular/appme/src/main/AndroidManifest.xml
  5. BIN
      app_modular/appme/src/main/res/mipmap-hdpi/ic_launcher.png
  6. BIN
      app_modular/appme/src/main/res/mipmap-hdpi/ic_launcher_round.png
  7. BIN
      app_modular/appme/src/main/res/mipmap-mdpi/ic_launcher.png
  8. BIN
      app_modular/appme/src/main/res/mipmap-mdpi/ic_launcher_round.png
  9. BIN
      app_modular/appme/src/main/res/mipmap-xhdpi/ic_launcher.png
  10. BIN
      app_modular/appme/src/main/res/mipmap-xhdpi/ic_launcher_round.png
  11. BIN
      app_modular/appme/src/main/res/mipmap-xxhdpi/ic_launcher.png
  12. BIN
      app_modular/appme/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
  13. BIN
      app_modular/appme/src/main/res/mipmap-xxxhdpi/ic_launcher.png
  14. BIN
      app_modular/appme/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
  15. 0 6
      app_modular/appme/src/main/res/values/colors.xml
  16. 0 3
      app_modular/appme/src/main/res/values/strings.xml
  17. 0 11
      app_modular/appme/src/main/res/values/styles.xml
  18. 0 1
      app_modular/appworks/.gitignore
  19. 0 35
      app_modular/appworks/build.gradle
  20. 0 25
      app_modular/appworks/proguard-rules.pro
  21. 0 9
      app_modular/appworks/src/main/AndroidManifest.xml
  22. BIN
      app_modular/appworks/src/main/res/mipmap-hdpi/ic_launcher.png
  23. BIN
      app_modular/appworks/src/main/res/mipmap-hdpi/ic_launcher_round.png
  24. BIN
      app_modular/appworks/src/main/res/mipmap-mdpi/ic_launcher.png
  25. BIN
      app_modular/appworks/src/main/res/mipmap-mdpi/ic_launcher_round.png
  26. BIN
      app_modular/appworks/src/main/res/mipmap-xhdpi/ic_launcher.png
  27. BIN
      app_modular/appworks/src/main/res/mipmap-xhdpi/ic_launcher_round.png
  28. BIN
      app_modular/appworks/src/main/res/mipmap-xxhdpi/ic_launcher.png
  29. BIN
      app_modular/appworks/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
  30. BIN
      app_modular/appworks/src/main/res/mipmap-xxxhdpi/ic_launcher.png
  31. BIN
      app_modular/appworks/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
  32. 0 6
      app_modular/appworks/src/main/res/values/colors.xml
  33. 0 3
      app_modular/appworks/src/main/res/values/strings.xml
  34. 0 11
      app_modular/appworks/src/main/res/values/styles.xml
  35. 3 5
      settings.gradle

+ 0 - 1
app_modular/appme/.gitignore

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

+ 0 - 35
app_modular/appme/build.gradle

@@ -1,35 +0,0 @@
-apply plugin: 'com.android.application'
-
-
-android {
-    compileSdkVersion 25
-    buildToolsVersion "25.0.3"
-
-
-    defaultConfig {
-        applicationId "com.uas.appme"
-        minSdkVersion 16
-        targetSdkVersion 25
-        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(dir: 'libs', include: ['*.jar'])
-    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
-        exclude group: 'com.android.support', module: 'support-annotations'
-    })
-
-    compile 'com.android.support:appcompat-v7:25.3.1'
-    testCompile 'junit:junit:4.12'
-}

+ 0 - 25
app_modular/appme/proguard-rules.pro

@@ -1,25 +0,0 @@
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in E:\Android-Studio\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 *;
-#}
-
-# Uncomment this to preserve the line number information for
-# debugging stack traces.
-#-keepattributes SourceFile,LineNumberTable
-
-# If you keep the line number information, uncomment this to
-# hide the original source file name.
-#-renamesourcefileattribute SourceFile

+ 0 - 9
app_modular/appme/src/main/AndroidManifest.xml

@@ -1,9 +0,0 @@
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.uas.appme">
-    <application
-        android:allowBackup="true"
-        android:icon="@mipmap/ic_launcher"
-        android:label="@string/app_name"
-        android:roundIcon="@mipmap/ic_launcher_round"
-        android:supportsRtl="true"
-        android:theme="@style/AppTheme" />
-</manifest>

BIN
app_modular/appme/src/main/res/mipmap-hdpi/ic_launcher.png


BIN
app_modular/appme/src/main/res/mipmap-hdpi/ic_launcher_round.png


BIN
app_modular/appme/src/main/res/mipmap-mdpi/ic_launcher.png


BIN
app_modular/appme/src/main/res/mipmap-mdpi/ic_launcher_round.png


BIN
app_modular/appme/src/main/res/mipmap-xhdpi/ic_launcher.png


BIN
app_modular/appme/src/main/res/mipmap-xhdpi/ic_launcher_round.png


BIN
app_modular/appme/src/main/res/mipmap-xxhdpi/ic_launcher.png


BIN
app_modular/appme/src/main/res/mipmap-xxhdpi/ic_launcher_round.png


BIN
app_modular/appme/src/main/res/mipmap-xxxhdpi/ic_launcher.png


BIN
app_modular/appme/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png


+ 0 - 6
app_modular/appme/src/main/res/values/colors.xml

@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <color name="colorPrimary">#3F51B5</color>
-    <color name="colorPrimaryDark">#303F9F</color>
-    <color name="colorAccent">#FF4081</color>
-</resources>

+ 0 - 3
app_modular/appme/src/main/res/values/strings.xml

@@ -1,3 +0,0 @@
-<resources>
-    <string name="app_name">appme</string>
-</resources>

+ 0 - 11
app_modular/appme/src/main/res/values/styles.xml

@@ -1,11 +0,0 @@
-<resources>
-
-    <!-- Base application theme. -->
-    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
-        <!-- Customize your theme here. -->
-        <item name="colorPrimary">@color/colorPrimary</item>
-        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
-        <item name="colorAccent">@color/colorAccent</item>
-    </style>
-
-</resources>

+ 0 - 1
app_modular/appworks/.gitignore

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

+ 0 - 35
app_modular/appworks/build.gradle

@@ -1,35 +0,0 @@
-apply plugin: 'com.android.application'
-
-
-android {
-    compileSdkVersion 25
-    buildToolsVersion "25.0.3"
-
-
-    defaultConfig {
-        applicationId "com.uas.appworks"
-        minSdkVersion 16
-        targetSdkVersion 25
-        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(dir: 'libs', include: ['*.jar'])
-    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
-        exclude group: 'com.android.support', module: 'support-annotations'
-    })
-
-    compile 'com.android.support:appcompat-v7:25.3.1'
-    testCompile 'junit:junit:4.12'
-}

+ 0 - 25
app_modular/appworks/proguard-rules.pro

@@ -1,25 +0,0 @@
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in E:\Android-Studio\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 *;
-#}
-
-# Uncomment this to preserve the line number information for
-# debugging stack traces.
-#-keepattributes SourceFile,LineNumberTable
-
-# If you keep the line number information, uncomment this to
-# hide the original source file name.
-#-renamesourcefileattribute SourceFile

+ 0 - 9
app_modular/appworks/src/main/AndroidManifest.xml

@@ -1,9 +0,0 @@
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.uas.appworks">
-    <application
-        android:allowBackup="true"
-        android:icon="@mipmap/ic_launcher"
-        android:label="@string/app_name"
-        android:roundIcon="@mipmap/ic_launcher_round"
-        android:supportsRtl="true"
-        android:theme="@style/AppTheme"/>
-</manifest>

BIN
app_modular/appworks/src/main/res/mipmap-hdpi/ic_launcher.png


BIN
app_modular/appworks/src/main/res/mipmap-hdpi/ic_launcher_round.png


BIN
app_modular/appworks/src/main/res/mipmap-mdpi/ic_launcher.png


BIN
app_modular/appworks/src/main/res/mipmap-mdpi/ic_launcher_round.png


BIN
app_modular/appworks/src/main/res/mipmap-xhdpi/ic_launcher.png


BIN
app_modular/appworks/src/main/res/mipmap-xhdpi/ic_launcher_round.png


BIN
app_modular/appworks/src/main/res/mipmap-xxhdpi/ic_launcher.png


BIN
app_modular/appworks/src/main/res/mipmap-xxhdpi/ic_launcher_round.png


BIN
app_modular/appworks/src/main/res/mipmap-xxxhdpi/ic_launcher.png


BIN
app_modular/appworks/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png


+ 0 - 6
app_modular/appworks/src/main/res/values/colors.xml

@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <color name="colorPrimary">#3F51B5</color>
-    <color name="colorPrimaryDark">#303F9F</color>
-    <color name="colorAccent">#FF4081</color>
-</resources>

+ 0 - 3
app_modular/appworks/src/main/res/values/strings.xml

@@ -1,3 +0,0 @@
-<resources>
-    <string name="app_name">appworks</string>
-</resources>

+ 0 - 11
app_modular/appworks/src/main/res/values/styles.xml

@@ -1,11 +0,0 @@
-<resources>
-
-    <!-- Base application theme. -->
-    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
-        <!-- Customize your theme here. -->
-        <item name="colorPrimary">@color/colorPrimary</item>
-        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
-        <item name="colorAccent">@color/colorAccent</item>
-    </style>
-
-</resources>

+ 3 - 5
settings.gradle

@@ -1,13 +1,12 @@
 //主工程
 //主工程
-include ':WeiChat', ':appworks', ':appme', 'message'
+include ':WeiChat'
 
 
 //核心模块
 //核心模块
 include ':network'
 include ':network'
 include ':imageload'
 include ':imageload'
 include ':common'
 include ':common'
 include ':message'
 include ':message'
-include ':appworks'
-include ':appme'
+//include ':appme'
 
 
 //第三库模块
 //第三库模块
 include ':lib-zxing'
 include ':lib-zxing'
@@ -28,8 +27,7 @@ project(':common').projectDir = new File('app_core/common')
 project(':message').projectDir = new File('app_core/message')
 project(':message').projectDir = new File('app_core/message')
 
 
 //业务模块
 //业务模块
-project(':appworks').projectDir = new File('app_modular/appworks')
-project(':appme').projectDir = new File('app_modular/appme')
+//project(':appme').projectDir = new File('app_modular/appme')
 
 
 //第三库模块
 //第三库模块
 project(':lib-zxing').projectDir = new File('app_third/lib-zxing')
 project(':lib-zxing').projectDir = new File('app_third/lib-zxing')