Skip to content

Commit 079b74c

Browse files
committed
[ALOY-1030] Remove additional tizen references
1 parent 3c9aae9 commit 079b74c

7 files changed

Lines changed: 5 additions & 9 deletions

File tree

samples/todo/views/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</Window>
4646

4747
<!-- Main Window for unsupported platforms -->
48-
<Window id="todoWin" platform="blackberry,mobileweb,tizen">
48+
<Window id="todoWin" platform="blackberry,mobileweb">
4949
<Label>todo app is only supported on Android and iOS</Label>
5050
</Window>
5151
</Alloy>

test/apps/advanced/require_children/widgets/alloy.container/widget.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"description" : "Alloy Container",
55
"author": "Tony Lukasavage",
66
"version": "1.0",
7-
"platforms":"android,ios,mobileweb,blackberry,tizen",
7+
"platforms":"android,ios,mobileweb,blackberry",
88
"dependencies": {}
99
}

test/apps/testing/ALOY-897/widgets/test/widget.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"min-alloy-version": "1.0",
1010
"min-titanium-version":"2.1",
1111
"tags":"",
12-
"platforms":"android,blackberry,ios,mobileweb,tizen"
12+
"platforms":"android,blackberry,ios,mobileweb"
1313
}

test/apps/testing/ALOY-937/widgets/foo/widget.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"min-alloy-version": "1.0",
1010
"min-titanium-version":"2.1",
1111
"tags":"",
12-
"platforms":"android,blackberry,ios,mobileweb,tizen"
12+
"platforms":"android,blackberry,ios,mobileweb"
1313
}

test/projects/HarnessTemplate/tiapp.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<target device="ipad">true</target>
77
<target device="android">true</target>
88
<target device="blackberry">true</target>
9-
<target device="tizen">true</target>
109
</deployment-targets>
1110
<sdk-version>3.2.3.GA</sdk-version>
1211
<id>com.appcelerator.AlloyHarness</id>

test/specs/compile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe('alloy compile', function() {
4949
});
5050

5151
_.each(platforms, function(platform,k) {
52-
if (platform.platform === 'tizen' || (process.platform === 'darwin' && platform.platform === 'blackberry')) {
52+
if (process.platform === 'darwin' && platform.platform === 'blackberry') {
5353
return;
5454
}
5555

tools/compiles.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ var harnessPath = path.join(__dirname, '..', 'test', 'projects', 'Harness');
88

99
async.series(_.map(platforms, function(p) {
1010

11-
// skip tizen
12-
if (p.platform === 'tizen') { return function(cb){ return cb(); }; }
13-
1411
// return a function that compiles and copies generated code for the given app
1512
return function(callback) {
1613

0 commit comments

Comments
 (0)