-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade SDWebImage Switch to Glide for Android Add initial css filters blur, contrast, brightness, grayscale, invert & sepia deprecate imageUri in favor of src deprecate resize in favor of decodedWidth & decodedHeight
- Loading branch information
Showing
33 changed files
with
11,555 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,37 @@ | ||
{ | ||
"description": "NativeScript Application", | ||
"license": "SEE LICENSE IN <your-license-filename>", | ||
"readme": "NativeScript Application", | ||
"repository": "<fill-your-repository-here>", | ||
"nativescript": { | ||
"id": "org.nativescript.demong", | ||
"tns-android": { | ||
"version": "4.0.1" | ||
} | ||
}, | ||
"dependencies": { | ||
"@angular/animations": "~5.2.0", | ||
"@angular/common": "~5.2.0", | ||
"@angular/compiler": "~5.2.0", | ||
"@angular/core": "~5.2.0", | ||
"@angular/forms": "~5.2.0", | ||
"@angular/http": "~5.2.0", | ||
"@angular/platform-browser": "~5.2.0", | ||
"@angular/platform-browser-dynamic": "~5.2.0", | ||
"@angular/router": "~5.2.0", | ||
"nativescript-angular": "~5.3.0", | ||
"nativescript-image-cache-it": "file:../src", | ||
"nativescript-theme-core": "~1.0.4", | ||
"reflect-metadata": "~0.1.8", | ||
"rxjs": "~5.5.2", | ||
"tns-core-modules": "~4.0.0", | ||
"zone.js": "~0.8.2" | ||
}, | ||
"devDependencies": { | ||
"babel-traverse": "6.26.0", | ||
"babel-types": "6.26.0", | ||
"babylon": "6.18.0", | ||
"lazy": "1.0.11", | ||
"nativescript-dev-typescript": "~0.6.0", | ||
"typescript": "~2.6.2" | ||
} | ||
"description": "NativeScript Application", | ||
"license": "SEE LICENSE IN <your-license-filename>", | ||
"readme": "NativeScript Application", | ||
"repository": "<fill-your-repository-here>", | ||
"nativescript": { | ||
"id": "org.nativescript.demong", | ||
"tns-android": { | ||
"version": "5.4.0" | ||
} | ||
}, | ||
"dependencies": { | ||
"@angular/animations": "8.0.0", | ||
"@angular/common": "8.0.0", | ||
"@angular/compiler": "8.0.0", | ||
"@angular/core": "8.0.0", | ||
"@angular/forms": "8.0.0", | ||
"@angular/platform-browser": "8.0.0", | ||
"@angular/platform-browser-dynamic": "8.0.0", | ||
"@angular/router": "8.0.0", | ||
"nativescript-angular": "^8.0.1", | ||
"nativescript-image-cache-it": "file:../src", | ||
"nativescript-theme-core": "~1.0.4", | ||
"reflect-metadata": "~0.1.8", | ||
"rxjs": "^6.3.3", | ||
"tns-core-modules": "^5.4.3", | ||
"zone.js": "^0.8.4" | ||
}, | ||
"devDependencies": { | ||
"babel-traverse": "6.26.0", | ||
"babel-types": "6.26.0", | ||
"babylon": "6.18.0", | ||
"lazy": "1.0.11", | ||
"nativescript-dev-typescript": "^0.10.0", | ||
"typescript": "~3.4.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/// <reference path="../src/node_modules/tns-platform-declarations/ios.d.ts" /> | ||
/// <reference path="../src/node_modules/tns-platform-declarations/android.d.ts" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,9 @@ | |
"*": [ | ||
"./node_modules/tns-core-modules/*", | ||
"./node_modules/*" | ||
], | ||
"~/*": [ | ||
"app/*" | ||
] | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,44 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="__PACKAGE__" | ||
android:versionCode="1" | ||
android:versionName="1.0"> | ||
package="__PACKAGE__" | ||
android:versionCode="1" | ||
android:versionName="1.0"> | ||
|
||
<supports-screens | ||
android:smallScreens="true" | ||
android:normalScreens="true" | ||
android:largeScreens="true" | ||
android:xlargeScreens="true"/> | ||
<supports-screens | ||
android:smallScreens="true" | ||
android:normalScreens="true" | ||
android:largeScreens="true" | ||
android:xlargeScreens="true"/> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="17" | ||
android:targetSdkVersion="__APILEVEL__"/> | ||
<uses-sdk | ||
android:minSdkVersion="17" | ||
android:targetSdkVersion="__APILEVEL__"/> | ||
|
||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<application | ||
android:name="com.tns.NativeScriptApplication" | ||
android:allowBackup="true" | ||
android:icon="@drawable/icon" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme"> | ||
<application | ||
android:usesCleartextTraffic="true" | ||
android:name="com.tns.NativeScriptApplication" | ||
android:allowBackup="true" | ||
android:icon="@drawable/icon" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme"> | ||
|
||
<activity | ||
android:name="com.tns.NativeScriptActivity" | ||
android:label="@string/title_activity_kimera" | ||
android:configChanges="keyboardHidden|orientation|screenSize" | ||
android:theme="@style/LaunchScreenTheme"> | ||
<activity | ||
android:name="com.tns.NativeScriptActivity" | ||
android:label="@string/title_activity_kimera" | ||
android:configChanges="keyboardHidden|orientation|screenSize" | ||
android:theme="@style/LaunchScreenTheme"> | ||
|
||
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" /> | ||
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme"/> | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name="com.tns.ErrorReportActivity"/> | ||
</application> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name="com.tns.ErrorReportActivity"/> | ||
</application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
@import '~nativescript-theme-core/css/core.light.css'; | ||
|
||
.even { | ||
border-radius: 50; | ||
border-top-color: red; | ||
border-right-color: red; | ||
border-left-color: red; | ||
border-bottom-color: red; | ||
border-width: 2; | ||
width: 100; | ||
height: 100; | ||
filter: blur(10px) | ||
} | ||
|
||
.odd { | ||
width: 80; | ||
height: 80; | ||
border-radius: 10; | ||
border-width: 1; | ||
border-color: blue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
import * as application from 'tns-core-modules/application'; | ||
application.start({ moduleName: "main-page" }); | ||
|
||
application.run({moduleName: 'main-page'}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"useLegacyWorkflow": false | ||
} |
Oops, something went wrong.