-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from vishal0071/master
Initial release changes
- Loading branch information
Showing
25 changed files
with
408 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,46 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<!-- | ||
Copyright (C) 2014 Arpit Khurana <[email protected]>, Vishal Nehra <[email protected]> | ||
This file is part of Amaze File Manager. | ||
Amaze File Manager is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.amaze.filemanager" | ||
android:versionCode="1" | ||
android:versionName="1.0" > | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="14" | ||
android:targetSdkVersion="15" /> | ||
|
||
<application | ||
android:name=".activities.Amaze" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="Amaze File Manager" > | ||
|
||
<!-- Google Analytics Version v4 needs this value for easy tracking --> | ||
<meta-data android:name="com.google.android.gms.analytics.globalConfigResource" | ||
android:resource="@xml/global_tracker" /> | ||
|
||
<activity | ||
android:label="Amaze File Manager" | ||
android:name=".activities.MainActivity" | ||
|
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
Binary file not shown.
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<!-- The apps Analytics Tracking Id --> | ||
<string name="ga_trackingId">UA-50377504-2</string> | ||
|
||
<!-- Percentage of events to include in reports --> | ||
<string name="ga_sampleFrequency">100.0</string> | ||
|
||
<!-- Enable automatic Activity measurement --> | ||
<bool name="ga_autoActivityTracking">true</bool> | ||
|
||
<!-- catch and report uncaught exceptions from the app --> | ||
<bool name="ga_reportUncaughtExceptions">true</bool> | ||
|
||
<!-- How long a session exists before giving up --> | ||
<integer name="ga_sessionTimeout">-1</integer> | ||
|
||
<!-- If ga_autoActivityTracking is enabled, an alternate screen name can be specified to | ||
substitute for the full length canonical Activity name in screen view hit. In order to | ||
specify an alternate screen name use an <screenName> element, with the name attribute | ||
specifying the canonical name, and the value the alias to use instead. --> | ||
<screenName name="com.amaze.filemanager">MainActivity</screenName> | ||
|
||
</resources> |
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,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<!-- the Local LogLevel for Analytics --> | ||
<string name="ga_logLevel">verbose</string> | ||
|
||
<!-- how often the dispatcher should fire --> | ||
<integer name="ga_dispatchPeriod">30</integer> | ||
|
||
<!-- Treat events as test events and don't send to google --> | ||
<bool name="ga_dryRun">false</bool> | ||
|
||
<!-- The screen names that will appear in reports --> | ||
<string name="com.amaze.filemanager">MainActivity</string> | ||
</resources> |
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
Oops, something went wrong.