From 65a380cd429fb4a227073116bc7f3818d3294ba3 Mon Sep 17 00:00:00 2001 From: wangcongtao Date: Wed, 18 Nov 2020 18:20:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9A=E4=BD=8D=E6=8C=89=E9=92=AE=E5=AE=9E?= =?UTF-8?q?=E7=8E=B0=E8=B0=83=E6=95=B4=E8=BD=A6=E5=A4=B4=E6=96=B9=E5=90=91?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/gradle.xml | 4 + app2/.gitignore | 1 + app2/build.gradle | 71 ++++++++ app2/proguard-rules.pro | 21 +++ .../freedom/app2/ExampleInstrumentedTest.java | 26 +++ app2/src/main/AndroidManifest.xml | 22 +++ .../java/com/freedom/app2/ApiServices.java | 17 ++ .../com/freedom/app2/DemoApplication.java | 30 ++++ .../java/com/freedom/app2/MainActivity.java | 78 ++++++++ .../java/com/freedom/app2/ResponseBody.java | 19 ++ .../drawable-v24/ic_launcher_foreground.xml | 30 ++++ .../res/drawable/ic_launcher_background.xml | 170 ++++++++++++++++++ app2/src/main/res/layout/activity_main.xml | 28 +++ .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + app2/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3593 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 5339 bytes app2/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2636 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3388 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4926 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 7472 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7909 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 11873 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10652 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 16570 bytes app2/src/main/res/values/colors.xml | 6 + app2/src/main/res/values/strings.xml | 3 + app2/src/main/res/values/styles.xml | 10 ++ .../com/freedom/app2/ExampleUnitTest.java | 17 ++ foudations/httpdns-base/build.gradle | 6 + .../java/com/mogo/httpdns/IMogoHttpDns.java | 5 + foudations/httpdns-noop/build.gradle | 7 + .../com/mogo/httpdns/noop/HttpDnsNoop.java | 8 + foudations/httpdns-tencent/build.gradle | 6 + .../mogo/httpdns/tencent/HttpDnsIpsCache.java | 32 ++++ .../mogo/httpdns/tencent/TencentHttpDns.java | 37 ++-- .../com/mogo/commons/AbsMogoApplication.java | 2 +- .../mogo/utils/network/RequestOptions.java | 2 +- .../module_services_marker_bkg.png | Bin 0 -> 1969 bytes .../module_services_marker_bkg.png | Bin 0 -> 1969 bytes .../module_services_marker_bkg.png | Bin 0 -> 9325 bytes .../src/main/res/values-mdpi/dimens.xml | 54 ++++++ .../src/main/res/values-xhdpi/dimens.xml | 54 ++++++ .../src/main/res/values/dimens.xml | 53 ++++++ settings.gradle | 1 + 45 files changed, 811 insertions(+), 19 deletions(-) create mode 100644 app2/.gitignore create mode 100644 app2/build.gradle create mode 100644 app2/proguard-rules.pro create mode 100644 app2/src/androidTest/java/com/freedom/app2/ExampleInstrumentedTest.java create mode 100644 app2/src/main/AndroidManifest.xml create mode 100644 app2/src/main/java/com/freedom/app2/ApiServices.java create mode 100644 app2/src/main/java/com/freedom/app2/DemoApplication.java create mode 100644 app2/src/main/java/com/freedom/app2/MainActivity.java create mode 100644 app2/src/main/java/com/freedom/app2/ResponseBody.java create mode 100644 app2/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 app2/src/main/res/drawable/ic_launcher_background.xml create mode 100644 app2/src/main/res/layout/activity_main.xml create mode 100644 app2/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app2/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 app2/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app2/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 app2/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app2/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 app2/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app2/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 app2/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app2/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 app2/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app2/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 app2/src/main/res/values/colors.xml create mode 100644 app2/src/main/res/values/strings.xml create mode 100644 app2/src/main/res/values/styles.xml create mode 100644 app2/src/test/java/com/freedom/app2/ExampleUnitTest.java create mode 100644 foudations/httpdns-tencent/src/main/java/com/mogo/httpdns/tencent/HttpDnsIpsCache.java create mode 100755 modules/mogo-module-common/src/main/res/drawable-ldpi/module_services_marker_bkg.png create mode 100755 modules/mogo-module-common/src/main/res/drawable-mdpi/module_services_marker_bkg.png create mode 100644 modules/mogo-module-common/src/main/res/drawable-xhdpi/module_services_marker_bkg.png diff --git a/.idea/gradle.xml b/.idea/gradle.xml index f1be24aab8..a973a8c831 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -13,7 +13,11 @@