Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67095833 authored by Rohit Sekhar's avatar Rohit Sekhar
Browse files

TelephoneOverlayTetris: Initialize

parent a9c5afe4
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
//
// Copyright (C) 2024 E FOUNDATION
//
// SPDX-License-Identifier: Apache-2.0
//

runtime_resource_overlay {
    name: "TelephonyOverlayTetris",
    sdk_version: "current",
    vendor: true,
    resource_dirs: ["res"]
}
+18 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2024 E FOUNDATION
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
          http://www.apache.org/licenses/LICENSE-2.0
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.phone.overlay.tetris">

    <application android:hasCode="false" />
    <overlay android:targetPackage="com.android.phone" android:isStatic="true" android:priority="1" />
</manifest>
+25 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
** Copyright 2024, E FOUNDATION
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<resources>
    <!-- String indicating the package name of the device ImsService implementation for MMTEL. -->
    <string translatble="false" name="config_ims_mmtel_package">com.mediatek.ims</string>

    <!-- String indicating the package name of the device ImsService implementation for RCS. -->
    <string translatable="false" name="config_ims_rcs_package">com.mediatek.ims</string>
</resources>