Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
App Lounge
Commits
1813b763
Commit
1813b763
authored
Apr 27, 2019
by
Nihar Thakkar
Browse files
Add copyright header
parent
66e9e44a
Changes
124
Hide whitespace changes
Inline
Side-by-side
app/src/main/AndroidManifest.xml
View file @
1813b763
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
-->
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"foundation.e.apps"
package=
"foundation.e.apps"
android:installLocation=
"internalOnly"
>
android:installLocation=
"internalOnly"
>
...
...
app/src/main/java/foundation/e/apps/MainActivity.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps
package
foundation.e.apps
import
android.annotation.SuppressLint
import
android.annotation.SuppressLint
...
@@ -18,6 +35,7 @@ import foundation.e.apps.home.HomeFragment
...
@@ -18,6 +35,7 @@ import foundation.e.apps.home.HomeFragment
import
foundation.e.apps.search.SearchFragment
import
foundation.e.apps.search.SearchFragment
import
foundation.e.apps.settings.SettingsFragment
import
foundation.e.apps.settings.SettingsFragment
import
foundation.e.apps.updates.UpdatesFragment
import
foundation.e.apps.updates.UpdatesFragment
import
foundation.e.apps.updates.UpdatesManager
import
foundation.e.apps.utils.Constants
import
foundation.e.apps.utils.Constants
import
foundation.e.apps.utils.Constants.CURRENTLY_SELECTED_FRAGMENT_KEY
import
foundation.e.apps.utils.Constants.CURRENTLY_SELECTED_FRAGMENT_KEY
import
kotlinx.android.synthetic.main.activity_main.*
import
kotlinx.android.synthetic.main.activity_main.*
...
...
app/src/main/java/foundation/e/apps/api/AppDetailRequest.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.api
package
foundation.e.apps.api
import
com.fasterxml.jackson.annotation.JsonCreator
import
com.fasterxml.jackson.annotation.JsonCreator
...
...
app/src/main/java/foundation/e/apps/api/HomeRequest.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.api
package
foundation.e.apps.api
import
android.content.Context
import
android.content.Context
...
...
app/src/main/java/foundation/e/apps/api/ListApplicationsRequest.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.api
package
foundation.e.apps.api
import
android.content.Context
import
android.content.Context
...
...
app/src/main/java/foundation/e/apps/api/ListCategoriesRequest.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.api
package
foundation.e.apps.api
import
com.fasterxml.jackson.annotation.JsonCreator
import
com.fasterxml.jackson.annotation.JsonCreator
...
...
app/src/main/java/foundation/e/apps/api/PackageNameSearchRequest.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.api
package
foundation.e.apps.api
import
com.fasterxml.jackson.annotation.JsonCreator
import
com.fasterxml.jackson.annotation.JsonCreator
...
...
app/src/main/java/foundation/e/apps/api/SearchRequest.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.api
package
foundation.e.apps.api
import
android.content.Context
import
android.content.Context
...
...
app/src/main/java/foundation/e/apps/application/ApplicationActivity.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application
package
foundation.e.apps.application
import
android.annotation.SuppressLint
import
android.annotation.SuppressLint
...
...
app/src/main/java/foundation/e/apps/application/ApplicationDescriptionActivity.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application
package
foundation.e.apps.application
import
android.support.v7.app.AppCompatActivity
import
android.support.v7.app.AppCompatActivity
...
...
app/src/main/java/foundation/e/apps/application/ApplicationViewHolder.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application
package
foundation.e.apps.application
import
android.annotation.SuppressLint
import
android.annotation.SuppressLint
...
...
app/src/main/java/foundation/e/apps/application/ScreenshotsActivity.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application
package
foundation.e.apps.application
import
android.support.v7.app.AppCompatActivity
import
android.support.v7.app.AppCompatActivity
...
...
app/src/main/java/foundation/e/apps/application/ScreenshotsCarouselAdapter.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application
package
foundation.e.apps.application
import
android.content.Context
import
android.content.Context
...
...
app/src/main/java/foundation/e/apps/application/SmallApplicationViewHolder.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application
package
foundation.e.apps.application
import
android.annotation.SuppressLint
import
android.annotation.SuppressLint
...
...
app/src/main/java/foundation/e/apps/application/model/Application.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application.model
package
foundation.e.apps.application.model
import
android.Manifest
import
android.Manifest
...
...
app/src/main/java/foundation/e/apps/application/model/ApplicationInfo.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application.model
package
foundation.e.apps.application.model
import
android.content.Context
import
android.content.Context
...
...
app/src/main/java/foundation/e/apps/application/model/ApplicationStateListener.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application.model
package
foundation.e.apps.application.model
import
foundation.e.apps.utils.Error
import
foundation.e.apps.utils.Error
...
...
app/src/main/java/foundation/e/apps/application/model/Downloader.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application.model
package
foundation.e.apps.application.model
import
android.app.DownloadManager
import
android.app.DownloadManager
...
...
app/src/main/java/foundation/e/apps/application/model/DownloaderInterface.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application.model
package
foundation.e.apps.application.model
import
android.content.Context
import
android.content.Context
...
...
app/src/main/java/foundation/e/apps/application/model/Installer.kt
View file @
1813b763
/*
Copyright (C) 2019 e Foundation
This program 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 <https://www.gnu.org/licenses/>.
*/
package
foundation.e.apps.application.model
package
foundation.e.apps.application.model
import
android.content.BroadcastReceiver
import
android.content.BroadcastReceiver
...
...
Prev
1
2
3
4
5
…
7
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment