Commit aaf4683e authored by DidntRead's avatar DidntRead
Browse files

testing: remove ims

parent 9cb07a35
Loading
Loading
Loading
Loading

ims/Android.mk

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
#
# Copyright (C) 2019 The LineageOS Project
#
# 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.
#
LOCAL_PATH := $(call my-dir)

include $(call all-makefiles-under,$(LOCAL_PATH))

ims/service/Android.mk

deleted100644 → 0
+0 −37
Original line number Diff line number Diff line
LOCAL_PATH:= $(call my-dir)

# Build the Ims OEM implementation including imsservice, imsadapter, imsriladapter.
include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(call all-java-files-under, src)

LOCAL_JAVA_LIBRARIES += telephony-common
LOCAL_JAVA_LIBRARIES += ims-common
LOCAL_STATIC_JAVA_LIBRARIES += wfo-common

# Use SimServs.jar for VoLTE MMTelSS Package
LOCAL_STATIC_JAVA_LIBRARIES += Simservs

LOCAL_PACKAGE_NAME := ImsService
LOCAL_SDK_VERSION := current
LOCAL_CERTIFICATE := platform
LOCAL_PRIVILEGED_MODULE := true

LOCAL_PROGUARD_ENABLED := disabled
LOCAL_PROGUARD_FLAGS := $(proguard.flags)

include $(BUILD_PACKAGE)

# Build java lib for accessing ImsConfigProvider API
include $(CLEAR_VARS)

LOCAL_MODULE := ims-config
LOCAL_SRC_FILES:= src/com/mediatek/ims/config/ConfigRegister.java \
                  src/com/mediatek/ims/config/FeatureRegister.java \
                  src/com/mediatek/ims/config/ImsConfigContract.java \
                  src/com/mediatek/ims/config/ImsConfigSettings.java \
                  src/com/mediatek/ims/config/Register.java \

LOCAL_JAVA_LIBRARIES := ims-common

include $(BUILD_STATIC_JAVA_LIBRARY)

ims/service/AndroidManifest.xml

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
        package="com.mediatek.ims"
        coreApp="true"
        android:sharedUserId="android.uid.phone"
>

	<uses-permission android:name="android.permission.READ_PRECISE_PHONE_STATE"/>
    <uses-permission android:name="android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE"/>

    <application android:name="ImsApp"
                 android:persistent="true">
        <provider
            android:name=".config.internal.ImsConfigProvider"
            android:authorities="com.mediatek.ims.config.provider"
            android:enabled="true"
            android:exported="true" >
        </provider>
    </application>
</manifest>

ims/service/NOTICE

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
Copyright (C) 2011-2014 MediaTek Inc.

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.
 No newline at end of file

ims/service/README

deleted100644 → 0
+0 −19
Original line number Diff line number Diff line
ImsService.apk is a service to provide IMS functionalities like volte, vilte, SS over LTE,
SMS over LTE.

WHAT IT DOES?
=============
ImsService.apk contains
 - ImsService handle IMS power on/off or registration event.
 - IMS OEM implementation files handle volte, vilte, ss over LTE or SMS over LTE functionalities.
 - IMSA make the connection with volte processes to dispatch messages to related modules.

HOW IT WAS BUILT?
==================
ImsService.apk is built from MTK internal build process if IMS feature is enable.

HOW TO USE IT?
==============
It's a persist APK. It will launch by AMS and create ImsService why application oncreat function
is called. When ImsService is avaiable it will enable/disable IMS from volte setting to
register/de-register to server and provide the IMS features.
 No newline at end of file
Loading