-
Notifications
You must be signed in to change notification settings - Fork 31
/
tiapp.xml
executable file
·73 lines (73 loc) · 3.77 KB
/
tiapp.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?><ti:app xmlns:ti="http://ti.appcelerator.org">
<deployment-targets>
<target device="iphone">true</target>
<target device="ipad">true</target>
<target device="android">true</target>
</deployment-targets>
<sdk-version>12.3.1.GA</sdk-version>
<id>org.piwik.mobile2</id>
<name>Matomo Mobile 2</name>
<version>2.5.3</version>
<publisher>thomassteur</publisher>
<url>https://matomo.org/mobile</url>
<description>Need your analytics on the go? Use our free Matomo Mobile (formerly Piwik Mobile) app to check your stats from anywhere and show them to colleagues in meetings. Matomo Mobile offers all the same reports as the Matomo (Piwik) desktop interface, and displays your visitor data in real time!</description>
<copyright>2023 by matomo</copyright>
<icon>appicon.png</icon>
<persistent-wifi>false</persistent-wifi>
<prerendered-icon>true</prerendered-icon>
<statusbar-style>default</statusbar-style>
<statusbar-hidden>false</statusbar-hidden>
<fullscreen>false</fullscreen>
<navbar-hidden>true</navbar-hidden>
<analytics>false</analytics>
<guid>a7b6c646-6cf6-40b4-a9e2-7ed0f67f510b</guid>
<property name="ti.ui.defaultunit">system</property>
<property name="ti.android.bug2373.finishfalseroot" type="bool">true</property>
<ios>
<use-app-thinning>true</use-app-thinning>
<plist>
<dict>
<key>UIUserInterfaceStyle</key>
<string>Light</string>
</dict>
<dict>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleLightContent</string>
</dict>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:installLocation="preferExternal" android:versionCode="33" android:versionName="2.5.3">
<application android:theme="@style/Theme.PiwikTheme" android:icon="@mipmap/appicon" android:roundIcon="@mipmap/appicon_round" >
<activity android:configChanges="keyboardHidden|orientation|screenSize" android:label="@string/app_name" android:name=".MatomoMobile2Activity" android:theme="@style/Theme.PiwikTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" xlargeScreens="true"/>
<uses-sdk android:installLocation="preferExternal" android:minSdkVersion="29" android:targetSdkVersion="34"/>
</manifest>
</android>
<plugins>
<plugin>ti.alloy</plugin>
</plugins>
<property name="ti.deploytype">production</property>
</ti:app>