I'm reading the code style from https://source.android.com/source/code-style.html it says:
Every file should have a copyright statement at the top
Then gives this example:
/*
* Copyright (C) 2013 The Android Open Source 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.
*/
I realize they are probably talking about classes being added into AOSP, but I would like to put a copyright statement at the top of my own "private" files. What is recommended to enter as a copyright statement for my Android applications/classes/custom views? I would like to keep them private and not have them open source? I know this might come off as a sort of vague question, but copyright has always confused me. Appreciate any help on the topic.