10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/imiss-react-master/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 |
6 | # testing
7 | /coverage
8 |
9 | # production
10 | /build
11 |
12 | # misc
13 | .DS_Store
14 | .env.local
15 | .env.development.local
16 | .env.test.local
17 | .env.production.local
18 |
19 | npm-debug.log*
20 | yarn-debug.log*
21 | yarn-error.log*
22 |
--------------------------------------------------------------------------------
/imiss-react-master/config-overrides.js:
--------------------------------------------------------------------------------
1 | const { injectBabelPlugin } = require('react-app-rewired');
2 | const path = require('path');
3 |
4 | module.exports = function override(config, env) {
5 | // config = injectBabelPlugin(['import', { libraryName: 'antd-mobile', style: 'css' }], config);
6 | return config;
7 | }
8 |
--------------------------------------------------------------------------------
/imiss-react-master/config/jest/cssTransform.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | // This is a custom Jest transformer turning style imports into empty objects.
4 | // http://facebook.github.io/jest/docs/en/webpack.html
5 |
6 | module.exports = {
7 | process() {
8 | return 'module.exports = {};';
9 | },
10 | getCacheKey() {
11 | // The output is always the same.
12 | return 'cssTransform';
13 | },
14 | };
15 |
--------------------------------------------------------------------------------
/imiss-react-master/config/jest/fileTransform.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const path = require('path');
4 |
5 | // This is a custom Jest transformer turning file imports into filenames.
6 | // http://facebook.github.io/jest/docs/en/webpack.html
7 |
8 | module.exports = {
9 | process(src, filename) {
10 | const assetFilename = JSON.stringify(path.basename(filename));
11 |
12 | if (filename.match(/\.svg$/)) {
13 | return `module.exports = {
14 | __esModule: true,
15 | default: ${assetFilename},
16 | ReactComponent: (props) => ({
17 | $$typeof: Symbol.for('react.element'),
18 | type: 'svg',
19 | ref: null,
20 | key: null,
21 | props: Object.assign({}, props, {
22 | children: ${assetFilename}
23 | })
24 | }),
25 | };`;
26 | }
27 |
28 | return `module.exports = ${assetFilename};`;
29 | },
30 | };
31 |
--------------------------------------------------------------------------------
/imiss-react-master/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/public/favicon.ico
--------------------------------------------------------------------------------
/imiss-react-master/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": ".",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/imiss-react-master/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | animation: App-logo-spin infinite 20s linear;
7 | height: 40vmin;
8 | }
9 |
10 | .App-header {
11 | background-color: #282c34;
12 | min-height: 100vh;
13 | display: flex;
14 | flex-direction: column;
15 | align-items: center;
16 | justify-content: center;
17 | font-size: calc(10px + 2vmin);
18 | color: white;
19 | }
20 |
21 | .App-link {
22 | color: #61dafb;
23 | }
24 |
25 | @keyframes App-logo-spin {
26 | from {
27 | transform: rotate(0deg);
28 | }
29 | to {
30 | transform: rotate(360deg);
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/imiss-react-master/src/App.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import Tabbar from '@TABBAR_PATH/tabbar';
3 | import Ranking from '@HOME_PATH/ranking';
4 | import About from '@MINE_PATH/about';
5 | import store from './redux/store/Store';
6 | import { Provider } from 'react-redux';
7 | import { BrowserRouter as Router, Route } from 'react-router-dom';
8 |
9 | class App extends Component {
10 | render() {
11 | return (
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | );
22 | }
23 | }
24 |
25 | export default App;
26 |
--------------------------------------------------------------------------------
/imiss-react-master/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 |
5 | it('renders without crashing', () => {
6 | const div = document.createElement('div');
7 | ReactDOM.render(, div);
8 | ReactDOM.unmountComponentAtNode(div);
9 | });
10 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/about.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .kk_about {
4 | background-color: @kColor_BG;
5 | position: fixed;
6 | width: 100%;
7 | height: 100%;
8 | top: 0;
9 |
10 | .content {
11 | margin-left: 15px;
12 | font-size: 16px;
13 | color: @kColor_Text_Gary;
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/base.less:
--------------------------------------------------------------------------------
1 | @MAIN_COLOR: #EE2C2C;
2 |
3 | @kColor_Text_Black: rgba(35, 24, 21, 1);
4 | @kColor_Text_Gary: #999999;
5 | @kColor_Text_White: rgba(255, 255, 255, 1);
6 | @kColor_BG: rgba(245, 245, 245, 1);
7 |
8 |
9 | // .average(@size) {
10 | // @media (min-width: 320px) {
11 | // @average: (@size);
12 | // }
13 | // @media (min-width: 375px) {
14 | // @average: (@size + 1);
15 | // }
16 | // @media (min-width: 620px) {
17 | // @average: (@size + 2);
18 | // }
19 | // }
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/header.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .kk_header {
4 | height: 49px;
5 | width: 100%;
6 | padding-left: 15px;
7 | align-items: center;
8 | flex-direction: row;
9 | display: flex;
10 | color: gray;
11 | font-size: 20px;
12 | background-color: @kColor_BG;
13 | font-family: 'ChalkboardSE-Light';
14 |
15 | .icon {
16 | width: 20px;
17 | height: 25px;
18 | background-color: red;
19 | margin-right: 3px;
20 | }
21 | .name {
22 |
23 | }
24 | }
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/home.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .kk_home {
4 | flex-grow: 1;
5 | background-color: @kColor_BG;
6 | display: flex;
7 | flex-direction: column;
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/homePopular.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .kk_homePopular {
4 | flex-grow: 1;
5 | background-color: red;
6 | display: flex;
7 | flex-direction: column;
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/mine.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .kk_mine {
4 | background-color: @kColor_BG;
5 | width: 100%;
6 | height: 100%;
7 |
8 | display: flex;
9 | flex-direction: column;
10 | flex: 1;
11 |
12 | .wrapper {
13 | width: 100%;
14 | height: 100%;
15 | overflow: hidden;
16 |
17 | span {
18 | font-size: 14px;
19 | color: gray;
20 | }
21 | }
22 |
23 |
24 | .share {
25 | position: absolute;
26 | width: 100;
27 | background-color: red;
28 | padding: 30;
29 |
30 | top: 20;
31 | left: 30;
32 | }
33 | }
34 |
35 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/ranking.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .ranking {
4 | background-color: green;
5 | position: fixed;
6 | width: 100%;
7 | height: 100%;
8 | top: 0;
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/sheet.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .kk_sheet {
4 | background-color: @kColor_BG;
5 | width: 100%;
6 | height: 100%;
7 |
8 | display: flex;
9 | flex-direction: column;
10 | flex: 1;
11 |
12 | .sheet {
13 | height: 120px;
14 | display: flex;
15 | flex-direction: row;
16 | align-items: center;
17 | padding-bottom: 10px;
18 | padding-top: 10px;
19 |
20 | .content {
21 | height: 100px;
22 | background-color: green;
23 | // display: flex;
24 | justify-content: center;
25 | align-items: center;
26 | flex-direction: column;
27 | margin-left: 10px;
28 |
29 | img {
30 | width: 100px;
31 | height: 100px;
32 | background-color: yellowgreen;
33 | }
34 | }
35 | }
36 | .wrapper {
37 | width: 100%;
38 | height: 100%;
39 | overflow: hidden;
40 |
41 | .list {
42 | width: 100%;
43 | }
44 | }
45 | }
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/css/tabbar.less:
--------------------------------------------------------------------------------
1 | @import "base.less";
2 |
3 | .tabbar {
4 | position: fixed;
5 | height: 100%;
6 | width: 100%;
7 | top: 0px;
8 | display: flex;
9 | flex-direction: column;
10 | align-items: center;
11 | flex: 1;
12 |
13 | .content {
14 | flex: 1;
15 | width: 100%;
16 |
17 | display: flex;
18 | flex-direction: row;
19 | }
20 |
21 | .module {
22 | width: 100%;
23 | display: flex;
24 | flex-direction: row;
25 | flex: 1;
26 | overflow: hidden;
27 | }
28 |
29 | .hide {
30 | display: none;
31 | }
32 |
33 | }
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/baseline-keyboard_arrow_left-24px.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/baseline-keyboard_arrow_right-24px.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_about.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_about@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_about@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_about@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_about@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_alamclock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_alamclock.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_alamclock@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_alamclock@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_alamclock@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_alamclock@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_combo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_combo.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_combo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_combo@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_combo@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_combo@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_edit.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_edit@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_edit@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_edit@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_edit@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_level.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_level.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_level@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_level@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_level@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_level@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_mail.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_mail@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_mail@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_mail@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_mail@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_musician.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_musician.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_musician@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_musician@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_musician@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_musician@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_night.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_night.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_night@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_night@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_night@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_night@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_scan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_scan.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_scan@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_scan@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_scan@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_scan@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_set.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_set.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_set@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_set@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_set@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_set@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_share.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_share@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_share@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_share@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_share@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_skin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_skin.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_skin@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_skin@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_skin@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_skin@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_store.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_store.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_store@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_store@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_store@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_store@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_time.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_time@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_time@2x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm2_set_icn_time@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm2_set_icn_time@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_account@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_account@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_account_prs@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_account_prs@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_discovery@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_discovery@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_discovery_prs@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_discovery_prs@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_music@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_music@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_music_new@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_music_new@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_music_new_prs@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_music_new_prs@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/cm4_btm_icn_music_prs@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/cm4_btm_icn_music_prs@3x.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/next.png
--------------------------------------------------------------------------------
/imiss-react-master/src/assets/img/placeholder_square.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss-react-master/src/assets/img/placeholder_square.png
--------------------------------------------------------------------------------
/imiss-react-master/src/component/Header.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import PropTypes from 'prop-types';
3 | import '@CSS_PATH/header.less';
4 |
5 | class Header extends Component {
6 |
7 | backButton = () => {
8 | return (
9 |
10 | )
11 | }
12 | nameLab = () => {
13 | return (
14 | {this.props.name}
15 | )
16 | }
17 | render() {
18 | return (
19 |
20 | {this.props.showBack == true && this.backButton()}
21 | {this.nameLab()}
22 |
23 | )
24 | }
25 | }
26 |
27 | Header.defaultProps = {
28 | name: '',
29 | showBack: false,
30 | onBackClick: ()=>{},
31 | };
32 |
33 | Header.propTypes = {
34 | name: PropTypes.string.isRequired,
35 | showBack: PropTypes.bool.isRequired,
36 | onBackClick: PropTypes.func,
37 | };
38 |
39 | export default Header;
40 |
41 |
--------------------------------------------------------------------------------
/imiss-react-master/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
5 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
6 | sans-serif;
7 | -webkit-font-smoothing: antialiased;
8 | -moz-osx-font-smoothing: grayscale;
9 | }
10 |
11 | code {
12 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
13 | monospace;
14 | }
15 |
--------------------------------------------------------------------------------
/imiss-react-master/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import * as serviceWorker from './serviceWorker';
6 |
7 | ReactDOM.render(, document.getElementById('root'));
8 |
9 | // If you want your app to work offline and load faster, you can change
10 | // unregister() to register() below. Note this comes with some pitfalls.
11 | // Learn more about service workers: http://bit.ly/CRA-PWA
12 | serviceWorker.unregister();
13 |
--------------------------------------------------------------------------------
/imiss-react-master/src/module/home/homePopular.js:
--------------------------------------------------------------------------------
1 | import '@CSS_PATH/homePopular.less';
2 | import React, { Component } from 'react'
3 |
4 |
5 | export default class homePopular extends Component {
6 |
7 | constructor(props) {
8 | super(props);
9 | this.state = {
10 |
11 | };
12 | }
13 |
14 | // 主视图
15 | render() {
16 | return (
17 |
18 | HomePopular
19 |
20 | );
21 | }
22 | }
23 |
24 |
25 |
--------------------------------------------------------------------------------
/imiss-react-master/src/module/home/homeRecommend.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react'
2 |
3 | export default class homeRecommend extends Component {
4 |
5 | constructor(props) {
6 | super(props);
7 | this.state = {
8 |
9 | };
10 | }
11 |
12 | // 主视图
13 | render() {
14 | return (
15 |
16 | homeRecommend
17 |
18 | );
19 | }
20 | }
21 |
22 |
23 |
--------------------------------------------------------------------------------
/imiss-react-master/src/module/home/ranking.js:
--------------------------------------------------------------------------------
1 | import '@CSS_PATH/ranking.less'
2 | import React, { Component } from 'react'
3 |
4 | export default class ranking extends Component {
5 | constructor(props, context) {
6 | super(props, context);
7 | }
8 |
9 | render() {
10 | return (
11 |
12 |
asdsadasdadasada
13 |
14 | )
15 | }
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/imiss-react-master/src/module/mine/about.js:
--------------------------------------------------------------------------------
1 | import '@CSS_PATH/about.less'
2 | import React, { Component } from 'react'
3 | import Header from '@COMPONENT_PATH/Header'
4 |
5 | export default class about extends Component {
6 |
7 | constructor(props) {
8 | super(props);
9 | this.state = {
10 |
11 | };
12 | }
13 | // 返回
14 | _onBackclick = () => {
15 | this.props.history.goBack()
16 | }
17 | // 主视图
18 | render() {
19 | return (
20 |
21 |
22 | 没什么好说的, 烦, 看谁都烦
23 |
24 | );
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/imiss-react-master/src/redux/action/homeRecommendAction.js:
--------------------------------------------------------------------------------
1 |
2 | // 首页Action
3 | let actions = {
4 | // 首页数据
5 | homeRecommendData: ()=>({
6 | type: "homeRecommendData"
7 | }),
8 | // 轮播图
9 | homeImage: ()=>({
10 | type: "homeImage"
11 | }),
12 | // 主编推荐
13 | homeRecommend: ()=>({
14 | type: "homeRecommend"
15 | }),
16 | // 热门佳作
17 | homeHot: ()=>({
18 | type: "homeHot"
19 | }),
20 | // 完结推荐
21 | homeEditor: ()=>({
22 | type: "homeEditor"
23 | }),
24 | }
25 |
26 | export default actions;
--------------------------------------------------------------------------------
/imiss-react-master/src/redux/reducer/index.js:
--------------------------------------------------------------------------------
1 | import { combineReducers } from 'redux';
2 | import HomeRecommendReducer from './HomeRecommendReducer';
3 |
4 | const rootReducer = combineReducers({
5 | HomeRecommendReducer: HomeRecommendReducer,
6 | });
7 |
8 | export default rootReducer;
9 |
10 |
--------------------------------------------------------------------------------
/imiss-react-master/src/redux/saga/HomeRecommendSagas.js:
--------------------------------------------------------------------------------
1 | // import { takeEvery, takeLatest } from 'redux-saga'
2 | import { takeLatest } from 'redux-saga'
3 | // import { call, put } from 'redux-saga/effects'
4 | // // 请求
5 | // import {
6 | // homeImage,
7 | // homeCategory,
8 | // homeRecommend,
9 | // homeHot,
10 | // homeEditor
11 | // } from '../../service/HomeApi';
12 |
13 | function* homeRecommendData() {
14 | // // 轮播图, 分类
15 | // const [image, category] = yield [call(homeImage), call(homeCategory)];
16 | // yield put({type: 'homeImage', homeImageJsons: image});
17 | // yield put({type: 'homeCategory', homeCategoryJsons: category});
18 | // // 推荐
19 | // const recommend = yield call(homeRecommend);
20 | // yield put({type: 'homeRecommend', homeRecommendJsons: recommend});
21 | // // 热门
22 | // const hot = yield call(homeHot);
23 | // yield put({type: 'homeHot', homeHotJsons: hot});
24 | // // 完结
25 | // const editor = yield call(homeEditor);
26 | // yield put({type: 'homeEditor', homeEditorJsons: editor});
27 | }
28 |
29 | export function* homeRecommendSaga() {
30 | yield* takeLatest("homeRecommendData", homeRecommendData);
31 | }
32 |
--------------------------------------------------------------------------------
/imiss-react-master/src/redux/saga/index.js:
--------------------------------------------------------------------------------
1 | // import { takeEvery } from 'redux-saga'
2 | import { call } from 'redux-saga/effects'
3 | // import { call, put } from 'redux-saga/effects'
4 |
5 | import { homeRecommendSaga } from './HomeRecommendSagas';
6 |
7 | function* saga() {
8 | yield [
9 | call(homeRecommendSaga),
10 | ]
11 | }
12 |
13 | export default saga;
--------------------------------------------------------------------------------
/imiss-react-master/src/util/public.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | export const MainColor = '#EE2C2C';
4 | export const kColor_Text_Black = 'rgba(35, 24, 21, 1)';
5 | export const kColor_Text_Gary = '#999999';
6 | export const kColor_Text_White = 'rgba(255, 255, 255, 1)';
7 | export const kColor_BG = 'rgba(245, 245, 245, 1)';
8 |
9 |
10 | export const SCREEN_WIDTH = document.body.clientWidth;
11 | export const SCREEN_HEIGHT = document.body.clientHeight;
12 | export const AdjustFont = (size)=>{
13 | // iPhone 8+ (8+, 7+, 6S+, 6+)
14 | if (SCREEN_WIDTH >= 430) {
15 | return (size + 2) + "px"
16 | }
17 | // iPhone 8 (8, 7, 6S, 6)
18 | else if (SCREEN_WIDTH >= 375) {
19 | return (size + 1) + "px"
20 | }
21 | // iPhone SE(SE, 5S, 5C)
22 | else if (SCREEN_WIDTH >= 320) {
23 | return (size) + "px"
24 | }
25 | return (size) + "px"
26 | }
27 |
--------------------------------------------------------------------------------
/imiss/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["module:metro-react-native-babel-preset"]
3 | }
4 |
--------------------------------------------------------------------------------
/imiss/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/imiss/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/imiss/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | project.xcworkspace
24 |
25 | # Android/IntelliJ
26 | #
27 | build/
28 | .idea
29 | .gradle
30 | local.properties
31 | *.iml
32 |
33 | # node.js
34 | #
35 | node_modules/
36 | npm-debug.log
37 | yarn-error.log
38 |
39 | # BUCK
40 | buck-out/
41 | \.buckd/
42 | *.keystore
43 |
44 | # fastlane
45 | #
46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47 | # screenshots whenever they are needed.
48 | # For more information about the recommended setup visit:
49 | # https://docs.fastlane.tools/best-practices/source-control/
50 |
51 | */fastlane/report.xml
52 | */fastlane/Preview.html
53 | */fastlane/screenshots
54 |
55 | # Bundle artifact
56 | *.jsbundle
57 |
--------------------------------------------------------------------------------
/imiss/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/imiss/App.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Sample React Native App
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | * @flow
7 | */
8 |
9 | import React, {Component} from 'react';
10 | import {Platform, StyleSheet, Text, View} from 'react-native';
11 | import home from 'Home';
12 |
13 | const instructions = Platform.select({
14 | ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
15 | android:
16 | 'Double tap R on your keyboard to reload,\n' +
17 | 'Shake or press menu button for dev menu',
18 | });
19 |
20 | type Props = {};
21 | export default class App extends Component {
22 | render() {
23 | return (
24 |
25 |
26 |
27 | );
28 | }
29 | }
30 |
31 | const styles = StyleSheet.create({
32 | container: {
33 | flex: 1,
34 | justifyContent: 'center',
35 | alignItems: 'center',
36 | backgroundColor: '#F5FCFF',
37 | },
38 | welcome: {
39 | fontSize: 20,
40 | textAlign: 'center',
41 | margin: 10,
42 | },
43 | instructions: {
44 | textAlign: 'center',
45 | color: '#333333',
46 | marginBottom: 5,
47 | },
48 | });
49 |
--------------------------------------------------------------------------------
/imiss/Home.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * @providesModule Home
4 | */
5 |
6 | import React, {Component} from 'react';
7 | import {Platform, StyleSheet, Text, View} from 'react-native';
8 |
9 | export default class Home extends Component {
10 | render() {
11 | return (
12 |
13 | Home1
14 |
15 | );
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/imiss/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/imiss/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/imiss/android/app/src/main/java/com/imiss/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.imiss;
2 |
3 | import com.facebook.react.ReactActivity;
4 |
5 | public class MainActivity extends ReactActivity {
6 |
7 | /**
8 | * Returns the name of the main component registered from JavaScript.
9 | * This is used to schedule rendering of the component.
10 | */
11 | @Override
12 | protected String getMainComponentName() {
13 | return "imiss";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | imiss
3 |
4 |
--------------------------------------------------------------------------------
/imiss/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/imiss/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | ext {
5 | buildToolsVersion = "27.0.3"
6 | minSdkVersion = 16
7 | compileSdkVersion = 27
8 | targetSdkVersion = 26
9 | supportLibVersion = "27.1.1"
10 | }
11 | repositories {
12 | jcenter()
13 | google()
14 | }
15 | dependencies {
16 | classpath 'com.android.tools.build:gradle:3.1.4'
17 |
18 | // NOTE: Do not place your application dependencies here; they belong
19 | // in the individual module build.gradle files
20 | }
21 | }
22 |
23 | allprojects {
24 | repositories {
25 | mavenLocal()
26 | jcenter()
27 | maven {
28 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
29 | url "$rootDir/../node_modules/react-native/android"
30 | }
31 | google()
32 | }
33 | }
34 |
35 |
36 | task wrapper(type: Wrapper) {
37 | gradleVersion = '4.4'
38 | distributionUrl = distributionUrl.replace("bin", "all")
39 | }
40 |
--------------------------------------------------------------------------------
/imiss/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
19 |
--------------------------------------------------------------------------------
/imiss/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imiss/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/imiss/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6 |
--------------------------------------------------------------------------------
/imiss/android/keystores/BUCK:
--------------------------------------------------------------------------------
1 | keystore(
2 | name = "debug",
3 | properties = "debug.keystore.properties",
4 | store = "debug.keystore",
5 | visibility = [
6 | "PUBLIC",
7 | ],
8 | )
9 |
--------------------------------------------------------------------------------
/imiss/android/keystores/debug.keystore.properties:
--------------------------------------------------------------------------------
1 | key.store=debug.keystore
2 | key.alias=androiddebugkey
3 | key.store.password=android
4 | key.alias.password=android
5 |
--------------------------------------------------------------------------------
/imiss/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'imiss'
2 |
3 | include ':app'
4 |
--------------------------------------------------------------------------------
/imiss/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "imiss",
3 | "displayName": "imiss"
4 | }
--------------------------------------------------------------------------------
/imiss/index.js:
--------------------------------------------------------------------------------
1 | /** @format */
2 |
3 | import {AppRegistry} from 'react-native';
4 | import App from './App';
5 | import {name as appName} from './app.json';
6 |
7 | AppRegistry.registerComponent(appName, () => App);
8 |
--------------------------------------------------------------------------------
/imiss/ios/imiss-tvOSTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/imiss/ios/imiss/AppDelegate.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 |
10 | @interface AppDelegate : UIResponder
11 |
12 | @property (nonatomic, strong) UIWindow *window;
13 |
14 | @end
15 |
--------------------------------------------------------------------------------
/imiss/ios/imiss/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/imiss/ios/imiss/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/imiss/ios/imiss/main.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 |
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/imiss/ios/imissTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/imiss/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "imiss",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "start": "node node_modules/react-native/local-cli/cli.js start",
7 | "test": "jest"
8 | },
9 | "dependencies": {
10 | "react": "16.5.0",
11 | "react-native": "0.57.0"
12 | },
13 | "devDependencies": {
14 | "babel-jest": "23.6.0",
15 | "jest": "23.6.0",
16 | "metro-react-native-babel-preset": "0.48.0",
17 | "react-test-renderer": "16.5.0"
18 | },
19 | "jest": {
20 | "preset": "react-native"
21 | }
22 | }
--------------------------------------------------------------------------------
/imissMusic.paw:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/378056350/imissMusic/8599e38e5d38124f2faf81e51089188eee4ecf4a/imissMusic.paw
--------------------------------------------------------------------------------