├── 2.1
├── .idea
│ ├── .name
│ ├── copyright
│ │ └── profiles_settings.xml
│ ├── encodings.xml
│ ├── modules.xml
│ └── 2.1.iml
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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
│ │ │ │ │ ├── strings_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ └── Movie.java
│ │ │ │ ├── base
│ │ │ │ └── AppBaseActivity.java
│ │ │ │ └── engine
│ │ │ │ ├── AppConstants.java
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ ├── engine
│ │ │ │ │ └── GlobalApplication.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.2.1
├── .idea
│ ├── .name
│ ├── copyright
│ │ └── profiles_settings.xml
│ ├── encodings.xml
│ ├── modules.xml
│ └── 2.2.1.iml
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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
│ │ │ │ │ ├── strings_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ └── Movie.java
│ │ │ │ └── engine
│ │ │ │ ├── AppConstants.java
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ ├── engine
│ │ │ │ │ └── GlobalApplication.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.10
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ └── net
│ │ │ │ │ ├── NetworkEntity.java
│ │ │ │ │ └── RequestCallback.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
├── YoungHeart
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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
│ │ │ │ │ ├── strings_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ ├── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ │ └── mockdata
│ │ │ │ └── MockMovie.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── freeline.py
│ ├── freeline
│ │ ├── release-tools
│ │ │ ├── manifest.txt
│ │ │ ├── dx.jar
│ │ │ ├── DexMerge.jar
│ │ │ ├── FreelineAapt
│ │ │ ├── jasmin.jar
│ │ │ ├── FreelineAapt_
│ │ │ ├── FreelineAapt.exe
│ │ │ ├── lib64
│ │ │ │ └── libc++.so
│ │ │ ├── databinding-cli.jar
│ │ │ └── databinding-cli8.jar
│ │ └── freeline_core
│ │ │ ├── init.pyc
│ │ │ ├── task.pyc
│ │ │ ├── utils.pyc
│ │ │ ├── .idea
│ │ │ ├── dictionaries
│ │ │ │ └── huangyong.xml
│ │ │ ├── vcs.xml
│ │ │ ├── inspectionProfiles
│ │ │ │ └── profiles_settings.xml
│ │ │ └── modules.xml
│ │ │ ├── __init__.pyc
│ │ │ ├── builder.pyc
│ │ │ ├── command.pyc
│ │ │ ├── cursor.pyc
│ │ │ ├── logger.pyc
│ │ │ ├── terminal.pyc
│ │ │ ├── tracing.pyc
│ │ │ ├── version.pyc
│ │ │ ├── dispatcher.pyc
│ │ │ ├── exceptions.pyc
│ │ │ ├── android_tools.pyc
│ │ │ ├── gradle_tools.pyc
│ │ │ ├── sync_client.pyc
│ │ │ ├── task_engine.pyc
│ │ │ ├── build_commands.pyc
│ │ │ ├── freeline_build.pyc
│ │ │ ├── gradle_clean_build.pyc
│ │ │ ├── gradle_inc_build.pyc
│ │ │ ├── __init__.py
│ │ │ └── hackwindows.py
│ ├── freeline.zip.tmp
│ ├── .idea
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── dictionaries
│ │ │ └── jianqiang.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── .gitignore
│ ├── settings.gradle
│ └── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
└── .DS_Store
├── 2.2.2
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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
│ │ │ │ │ ├── strings_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ ├── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ │ └── xml
│ │ │ │ │ └── url.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ └── Movie.java
│ │ │ │ └── engine
│ │ │ │ ├── AppConstants.java
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ ├── engine
│ │ │ │ │ └── GlobalApplication.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.3
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ ├── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ │ └── xml
│ │ │ │ │ └── url.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ └── Movie.java
│ │ │ │ └── engine
│ │ │ │ ├── AppConstants.java
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ ├── engine
│ │ │ │ │ └── GlobalApplication.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.4.1
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ └── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.4.2
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ └── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.5
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ ├── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ │ └── mockdata
│ │ │ │ └── MockMovie.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.6
├── YoungHeart
│ ├── .idea
│ │ ├── .name
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ ├── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ │ └── mockdata
│ │ │ │ └── MockMovie.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
└── .DS_Store
├── 2.7
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ ├── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ │ │ └── activity
│ │ │ │ │ └── BaseActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
├── YoungHeart
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ ├── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ │ └── mockdata
│ │ │ │ └── MockMovie.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .idea
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── dictionaries
│ │ │ └── jianqiang.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
└── .DS_Store
├── 2.8
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ └── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
├── YoungHeart
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ ├── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ │ └── mockdata
│ │ │ │ └── MockMovie.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .idea
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── dictionaries
│ │ │ └── jianqiang.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
└── .DS_Store
├── 2.9
├── mylibrary
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── xml
│ │ │ │ │ └── url.xml
│ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ ├── java
│ │ │ │ └── jianqiang
│ │ │ │ │ └── com
│ │ │ │ │ └── mylibrary
│ │ │ │ │ └── net
│ │ │ │ │ ├── RequestCallback.java
│ │ │ │ │ └── NetworkEntity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── mylibrary
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── mylibrary
│ │ │ └── ApplicationTest.java
│ └── .DS_Store
├── YoungHeart
│ ├── app
│ │ ├── .gitignore
│ │ └── src
│ │ │ ├── main
│ │ │ ├── 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_activity_personcenter.xml
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── dimens.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── strings_activity.main.xml
│ │ │ │ └── values-w820dp
│ │ │ │ │ └── dimens.xml
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ ├── entity
│ │ │ │ ├── Movie.java
│ │ │ │ └── MovieList.java
│ │ │ │ └── engine
│ │ │ │ ├── GlobalVariables.java
│ │ │ │ ├── AppConstants.java
│ │ │ │ └── YoungHeartApplication.java
│ │ │ ├── test
│ │ │ └── java
│ │ │ │ └── jianqiang
│ │ │ │ └── com
│ │ │ │ └── youngheart
│ │ │ │ └── ExampleUnitTest.java
│ │ │ └── androidTest
│ │ │ └── java
│ │ │ └── jianqiang
│ │ │ └── com
│ │ │ └── youngheart
│ │ │ └── ApplicationTest.java
│ ├── .idea
│ │ ├── copyright
│ │ │ └── profiles_settings.xml
│ │ ├── dictionaries
│ │ │ └── jianqiang.xml
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── .gitignore
│ ├── settings.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ └── build.gradle
└── .DS_Store
├── .DS_Store
└── README.md
/2.1/.idea/.name:
--------------------------------------------------------------------------------
1 | 2.1
--------------------------------------------------------------------------------
/2.2.1/.idea/.name:
--------------------------------------------------------------------------------
1 | 2.2.1
--------------------------------------------------------------------------------
/2.1/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.1/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.10/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.2.1/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.2.2/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.3/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.4.1/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.4.2/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.5/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/.idea/.name:
--------------------------------------------------------------------------------
1 | YoungHeart
--------------------------------------------------------------------------------
/2.6/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.7/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.8/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.9/mylibrary/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline.py:
--------------------------------------------------------------------------------
1 | freeline/freeline.py
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/.DS_Store
--------------------------------------------------------------------------------
/2.1/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/.DS_Store
--------------------------------------------------------------------------------
/2.3/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/.DS_Store
--------------------------------------------------------------------------------
/2.5/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/.DS_Store
--------------------------------------------------------------------------------
/2.6/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/.DS_Store
--------------------------------------------------------------------------------
/2.7/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/.DS_Store
--------------------------------------------------------------------------------
/2.8/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/.DS_Store
--------------------------------------------------------------------------------
/2.9/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/.DS_Store
--------------------------------------------------------------------------------
/2.1/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.10/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/.DS_Store
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/manifest.txt:
--------------------------------------------------------------------------------
1 | Main-Class: com.android.dx.command.Main
2 |
--------------------------------------------------------------------------------
/2.10/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.2.1/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/.DS_Store
--------------------------------------------------------------------------------
/2.2.2/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/.DS_Store
--------------------------------------------------------------------------------
/2.3/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.4.1/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/.DS_Store
--------------------------------------------------------------------------------
/2.4.2/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/.DS_Store
--------------------------------------------------------------------------------
/2.5/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.6/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.7/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.8/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.9/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.1/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.3/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.5/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.6/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.7/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.8/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.9/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.10/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.2.1/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.2.2/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.4.1/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.4.2/mylibrary/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/mylibrary/.DS_Store
--------------------------------------------------------------------------------
/2.1/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.2.1/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.1/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline.zip.tmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline.zip.tmp
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.3/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.5/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.6/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.7/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.8/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.9/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 |
4 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/.idea/dictionaries/jianqiang.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/.idea/dictionaries/jianqiang.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/.idea/dictionaries/jianqiang.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/.idea/dictionaries/jianqiang.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/dx.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/dx.jar
--------------------------------------------------------------------------------
/2.10/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | include 'mylibrary'
4 | project(':mylibrary').projectDir = new File(settingsDir, "../mylibrary")
5 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/init.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/init.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/task.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/task.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/utils.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/utils.pyc
--------------------------------------------------------------------------------
/2.3/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.5/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.6/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.7/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.8/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.9/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/.idea/dictionaries/huangyong.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/__init__.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/__init__.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/builder.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/builder.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/command.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/command.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/cursor.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/cursor.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/logger.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/logger.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/terminal.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/terminal.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/tracing.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/tracing.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/version.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/version.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/DexMerge.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/DexMerge.jar
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/FreelineAapt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/FreelineAapt
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/jasmin.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/jasmin.jar
--------------------------------------------------------------------------------
/2.10/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/YoungHeart/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/dispatcher.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/dispatcher.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/exceptions.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/exceptions.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/FreelineAapt_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/FreelineAapt_
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/android_tools.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/android_tools.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/gradle_tools.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/gradle_tools.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/sync_client.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/sync_client.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/task_engine.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/task_engine.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/FreelineAapt.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/FreelineAapt.exe
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/lib64/libc++.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/lib64/libc++.so
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/build_commands.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/build_commands.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/freeline_build.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/freeline_build.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/databinding-cli.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/databinding-cli.jar
--------------------------------------------------------------------------------
/2.10/mylibrary/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyLibrary
3 | 正在加载中
4 |
5 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/gradle_clean_build.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/gradle_clean_build.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/gradle_inc_build.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/freeline_core/gradle_inc_build.pyc
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/release-tools/databinding-cli8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/freeline/release-tools/databinding-cli8.jar
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/YoungHeart/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/YoungHeart/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.1/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.10/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.3/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/YoungHeart/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/YoungHeart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.5/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.6/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.7/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.8/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.9/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.1/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.2.2/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.1/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BaoBaoJianqiang/AndroidNetwork/HEAD/2.4.2/YoungHeart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/2.1/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.2.1/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/__init__.py:
--------------------------------------------------------------------------------
1 | import build_commands
2 | import builder
3 | import command
4 | import dispatcher
5 | import exceptions
6 | import task
7 | import tracing
8 | import utils
9 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/Movie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | public class Movie
4 | {
5 | public int movieId;
6 | public String movieName;
7 | }
8 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/entity/MovieList.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.entity;
2 |
3 | import java.util.List;
4 |
5 | public class MovieList {
6 | public List movieList;
7 | }
8 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 |
6 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 |
6 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 |
6 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 |
6 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/base/AppBaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.base;
2 |
3 | import jianqiang.com.mylibrary.activity.BaseActivity;
4 |
5 | public abstract class AppBaseActivity extends BaseActivity {
6 |
7 | }
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 | }
7 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 | }
7 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 | }
7 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 | }
7 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/values/strings_activity_personcenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 评论
4 | Recharge
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.3/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.5/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.6/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.7/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.8/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/GlobalVariables.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.youngheart.entity.CinemaBean;
4 |
5 | public class GlobalVariables {
6 | public static CinemaBean Cinema;
7 | }
8 |
--------------------------------------------------------------------------------
/2.9/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 | }
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 2.1 使用OKHttp,get和post
2 | 2.2.1 onFail统一处理
3 | 2.2.2 不是每个请求都需要回调的
4 | 2.3 ProgressBar基本
5 | 2.4.1 数据缓存策略 直接从硬盘,不走内存
6 | 2.4.2 强制更新
7 | 2.5 MockService
8 | 2.6 时间校准
9 | 2.7 重试 & 设置超时
10 | 2.8 取消请求 OKHttp的机制
11 | 2.9 使用RxJava 重构缓存
12 | 2.10 使用Callback控制菊花
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | YoungHeart
3 | Hello world!
4 | Settings
5 | 正在加载中
6 |
7 |
--------------------------------------------------------------------------------
/2.1/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
--------------------------------------------------------------------------------
/2.10/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.3/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.5/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.6/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
--------------------------------------------------------------------------------
/2.7/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
--------------------------------------------------------------------------------
/2.8/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
--------------------------------------------------------------------------------
/2.9/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.2.1/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/main/java/jianqiang/com/mylibrary/net/NetworkEntity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public class NetworkEntity
4 | {
5 | public int isError;
6 | public int errorType; //1为Cookie失效
7 | public String errorMessage;
8 | public String result;
9 | }
10 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/2.10/mylibrary/src/main/java/jianqiang/com/mylibrary/net/RequestCallback.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.net;
2 |
3 | public interface RequestCallback
4 | {
5 | public void onSuccess(String content);
6 |
7 | public void onFail(String errorMessage);
8 |
9 | public void showDialog();
10 | }
11 |
--------------------------------------------------------------------------------
/2.1/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.3/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.5/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.6/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.7/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.8/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.9/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2.10/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/AppConstants.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | public class AppConstants {
4 | public final static String Email = "Email";
5 | public final static String Cinema = "Cinema";
6 |
7 | public final static String CACHEDIR = "/data/data/jianqiang.com.youngheart/cache/";}
8 |
--------------------------------------------------------------------------------
/2.1/.idea/2.1.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/2.2.1/.idea/2.2.1.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/freeline/freeline_core/hackwindows.py:
--------------------------------------------------------------------------------
1 | TIOCGWINSZ = 1074295912
2 |
3 |
4 | def fcntl(fd, op, arg=0):
5 | return 0
6 |
7 |
8 | def ioctl(fd, op, arg=0, mutable_flag=True):
9 | if mutable_flag:
10 | return 0
11 | else:
12 | return ""
13 |
14 |
15 | def flock(fd, op):
16 | return
17 |
18 |
19 | def lockf(fd, operation, length=0, start=0, whence=0):
20 | return
21 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import jianqiang.com.mylibrary.engine.GlobalApplication;
4 |
5 | /**
6 | * Created by jianqiang on 16/11/22.
7 | */
8 | public class YoungHeartApplication extends GlobalApplication {
9 |
10 | @Override
11 | public void onCreate() {
12 | super.onCreate();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/2.1/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.10/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.3/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.5/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.6/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.7/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.8/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.9/mylibrary/src/test/java/jianqiang/com/mylibrary/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/test/java/jianqiang/com/youngheart/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/2.1/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.10/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.3/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.5/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.6/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.7/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.8/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.9/mylibrary/src/androidTest/java/jianqiang/com/mylibrary/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/androidTest/java/jianqiang/com/youngheart/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/java/jianqiang/com/youngheart/engine/YoungHeartApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.engine;
2 |
3 | import com.antfortune.freeline.FreelineCore;
4 |
5 | import jianqiang.com.mylibrary.engine.GlobalApplication;
6 |
7 | /**
8 | * Created by jianqiang on 16/11/22.
9 | */
10 | public class YoungHeartApplication extends GlobalApplication {
11 |
12 | @Override
13 | public void onCreate() {
14 | super.onCreate();
15 | FreelineCore.init(this);
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
14 |
15 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/xml/url.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
14 |
15 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/engine/GlobalApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.engine;
2 |
3 | import android.app.Application;
4 | import android.content.Context;
5 |
6 | /**
7 | * Created by jianqiang on 16/11/22.
8 | */
9 | public class GlobalApplication extends Application {
10 | private static Context context;
11 |
12 | @Override
13 | public void onCreate() {
14 | super.onCreate();
15 |
16 | context = getApplicationContext();
17 | }
18 |
19 | public static Context getContextObject(){
20 | return context;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/engine/GlobalApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.engine;
2 |
3 | import android.app.Application;
4 | import android.content.Context;
5 |
6 | /**
7 | * Created by jianqiang on 16/11/22.
8 | */
9 | public class GlobalApplication extends Application {
10 | private static Context context;
11 |
12 | @Override
13 | public void onCreate() {
14 | super.onCreate();
15 |
16 | context = getApplicationContext();
17 | }
18 |
19 | public static Context getContextObject(){
20 | return context;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/main/java/jianqiang/com/mylibrary/engine/GlobalApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.engine;
2 |
3 | import android.app.Application;
4 | import android.content.Context;
5 |
6 | /**
7 | * Created by jianqiang on 16/11/22.
8 | */
9 | public class GlobalApplication extends Application {
10 | private static Context context;
11 |
12 | @Override
13 | public void onCreate() {
14 | super.onCreate();
15 |
16 | context = getApplicationContext();
17 | }
18 |
19 | public static Context getContextObject(){
20 | return context;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/2.3/mylibrary/src/main/java/jianqiang/com/mylibrary/engine/GlobalApplication.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.engine;
2 |
3 | import android.app.Application;
4 | import android.content.Context;
5 |
6 | /**
7 | * Created by jianqiang on 16/11/22.
8 | */
9 | public class GlobalApplication extends Application {
10 | private static Context context;
11 |
12 | @Override
13 | public void onCreate() {
14 | super.onCreate();
15 |
16 | context = getApplicationContext();
17 | }
18 |
19 | public static Context getContextObject(){
20 | return context;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.3/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.5/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.6/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.7/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.1/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.2.2/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.3/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.4.1/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.4.2/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public abstract class BaseActivity extends Activity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 |
11 | initVariables();
12 | initViews(savedInstanceState);
13 | loadData();
14 | }
15 |
16 | protected abstract void initVariables();
17 |
18 | protected abstract void initViews(Bundle savedInstanceState);
19 |
20 | protected abstract void loadData();
21 | }
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/app/src/main/res/values/strings_activity.main.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 去登录
4 | 去新的登录页
5 | 去列表页
6 |
7 | 通过JsonObject
8 | 通过FastJson
9 | 通过Gson
10 |
11 | 测试空值
12 |
13 | OKHttp Get
14 | OKHttp Post
15 |
16 |
--------------------------------------------------------------------------------
/2.1/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
--------------------------------------------------------------------------------
/2.10/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.3/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.2.1/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.2.2/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.4.1/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.4.2/YoungHeart/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 | classpath 'me.tatarka:gradle-retrolambda:3.2.5'
10 |
11 | // NOTE: Do not place your application dependencies here; they belong
12 | // in the individual module build.gradle files
13 | }
14 | }
15 |
16 | allprojects {
17 | repositories {
18 | jcenter()
19 | }
20 | }
21 |
22 | task clean(type: Delete) {
23 | delete rootProject.buildDir
24 | }
25 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 | classpath 'me.tatarka:gradle-retrolambda:3.2.5'
10 |
11 | // NOTE: Do not place your application dependencies here; they belong
12 | // in the individual module build.gradle files
13 | }
14 | }
15 |
16 | allprojects {
17 | repositories {
18 | jcenter()
19 | }
20 | }
21 |
22 | task clean(type: Delete) {
23 | delete rootProject.buildDir
24 | }
25 |
--------------------------------------------------------------------------------
/2.9/YoungHeart/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 | classpath 'me.tatarka:gradle-retrolambda:3.2.5'
10 |
11 | // NOTE: Do not place your application dependencies here; they belong
12 | // in the individual module build.gradle files
13 | }
14 | }
15 |
16 | allprojects {
17 | repositories {
18 | jcenter()
19 | }
20 | }
21 |
22 | task clean(type: Delete) {
23 | delete rootProject.buildDir
24 | }
25 |
--------------------------------------------------------------------------------
/2.2.1/mylibrary/src/main/java/jianqiang/com/mylibrary/activity/BaseActivity.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.mylibrary.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 | import android.support.v7.app.AppCompatActivity;
6 |
7 | public abstract class BaseActivity extends AppCompatActivity {
8 | @Override
9 | public void onCreate(Bundle savedInstanceState) {
10 | super.onCreate(savedInstanceState);
11 |
12 | initVariables();
13 | initViews(savedInstanceState);
14 | loadData();
15 | }
16 |
17 | protected abstract void initVariables();
18 |
19 | protected abstract void initViews(Bundle savedInstanceState);
20 |
21 | protected abstract void loadData();
22 | }
--------------------------------------------------------------------------------
/2.10/YoungHeart/app/src/main/java/jianqiang/com/youngheart/mockdata/MockMovie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.mockdata;
2 |
3 | import com.alibaba.fastjson.JSON;
4 |
5 | import jianqiang.com.mylibrary.mockdata.MockService;
6 | import jianqiang.com.mylibrary.net.NetworkEntity;
7 | import jianqiang.com.youngheart.entity.Movie;
8 |
9 | public class MockMovie extends MockService {
10 | @Override
11 | public String getJsonData() {
12 | Movie movie = new Movie();
13 | movie.movieId = 123;
14 | movie.movieName = "WarCraft";
15 |
16 | NetworkEntity response = getSuccessResponse();
17 | response.result = JSON.toJSONString(movie);
18 | return JSON.toJSONString(response);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/2.5/YoungHeart/app/src/main/java/jianqiang/com/youngheart/mockdata/MockMovie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.mockdata;
2 |
3 | import com.alibaba.fastjson.JSON;
4 |
5 | import jianqiang.com.mylibrary.mockdata.MockService;
6 | import jianqiang.com.mylibrary.net.NetworkEntity;
7 | import jianqiang.com.youngheart.entity.Movie;
8 |
9 | public class MockMovie extends MockService {
10 | @Override
11 | public String getJsonData() {
12 | Movie movie = new Movie();
13 | movie.movieId = 123;
14 | movie.movieName = "WarCraft";
15 |
16 | NetworkEntity response = getSuccessResponse();
17 | response.result = JSON.toJSONString(movie);
18 | return JSON.toJSONString(response);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/2.6/YoungHeart/app/src/main/java/jianqiang/com/youngheart/mockdata/MockMovie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.mockdata;
2 |
3 | import com.alibaba.fastjson.JSON;
4 |
5 | import jianqiang.com.mylibrary.mockdata.MockService;
6 | import jianqiang.com.mylibrary.net.NetworkEntity;
7 | import jianqiang.com.youngheart.entity.Movie;
8 |
9 | public class MockMovie extends MockService {
10 | @Override
11 | public String getJsonData() {
12 | Movie movie = new Movie();
13 | movie.movieId = 123;
14 | movie.movieName = "WarCraft";
15 |
16 | NetworkEntity response = getSuccessResponse();
17 | response.result = JSON.toJSONString(movie);
18 | return JSON.toJSONString(response);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/2.7/YoungHeart/app/src/main/java/jianqiang/com/youngheart/mockdata/MockMovie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.mockdata;
2 |
3 | import com.alibaba.fastjson.JSON;
4 |
5 | import jianqiang.com.mylibrary.mockdata.MockService;
6 | import jianqiang.com.mylibrary.net.NetworkEntity;
7 | import jianqiang.com.youngheart.entity.Movie;
8 |
9 | public class MockMovie extends MockService {
10 | @Override
11 | public String getJsonData() {
12 | Movie movie = new Movie();
13 | movie.movieId = 123;
14 | movie.movieName = "WarCraft";
15 |
16 | NetworkEntity response = getSuccessResponse();
17 | response.result = JSON.toJSONString(movie);
18 | return JSON.toJSONString(response);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/2.8/YoungHeart/app/src/main/java/jianqiang/com/youngheart/mockdata/MockMovie.java:
--------------------------------------------------------------------------------
1 | package jianqiang.com.youngheart.mockdata;
2 |
3 | import com.alibaba.fastjson.JSON;
4 |
5 | import jianqiang.com.mylibrary.mockdata.MockService;
6 | import jianqiang.com.mylibrary.net.NetworkEntity;
7 | import jianqiang.com.youngheart.entity.Movie;
8 |
9 | public class MockMovie extends MockService {
10 | @Override
11 | public String getJsonData() {
12 | Movie movie = new Movie();
13 | movie.movieId = 123;
14 | movie.movieName = "WarCraft";
15 |
16 | NetworkEntity response = getSuccessResponse();
17 | response.result = JSON.toJSONString(movie);
18 | return JSON.toJSONString(response);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------