Seeing this 4.5-month old question only now. Here is some input that may get you started:
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\kannadafont{Noto Sans Kannada}
\usepackage{polyglossia}
\setmainlanguage{kannada}
\setotherlanguages{english}
\begin{document}
\textenglish{namUmxru maYsUru.}
ನಮ್ಮೂರು ಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರುನಮ್ಮೂರಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರು
\textbf{ನಮ್ಮೂರು ಮೈಸೂರು.}
\emph{ನಮ್ಮೂರು ಮೈಸೂರು.}
\end{document}
It produces the following output:

Not everything is perfect. An explanation of some of the problems mentioned in the question:
The warning
Font 'Lohit Kannada' does not contain script 'Kannada'
means that in the font 'Lohit Kannada', there are no OpenType features specific to script tag 'knda' (or perhaps 'knd2'). (I touched upon this in this answer.) The fix is to change the line
\setmainfont[Script=Kannada]{Lohit Kannada}
to just
\setmainfont{Lohit Kannada}
because there are no script-specific features you wish to load. (The Script= is meant mainly for multilingual fonts that contain different font features for different scripts.)
The warning
Could not resolve font Lohit Kannada/I (it probably doesn't exist)
is specifically about the italic variant (/I) of Lohit Kannada. It indeed probably doesn't exist. At least, fontspec was not able to find the font. (A possible reason is that Lohit Kannada is not in the now-standard OpenType format: see this post Improving Kannada Fonts from 2013 and follow the links from there for more details.)
When compiling my above input with Noto Sans Kannada (which doesn't have an italic style), I get the warning:
LaTeX Font Warning: Font shape `EU1/NotoSansKannada(0)/m/it' undefined
(Font) using `EU1/NotoSansKannada(0)/m/n' instead on input line 12
which is slightly more clear.
The reason the Latin-script text namUmxru maYsUru appears in boxes is because of the \setmainfont: the Lohit Kannada font does not contain glyphs for Latin characters, so for those characters you need to switch to an "English" font. (With polyglossia you can use \textenglish around such sections.)
To get hyphenation, you can use polyglossia and declare the language as Kannada with \setmainlanguage{Kannada}, which will load some hyphenation patterns specific to Kannada script. (Sort of. These aren't very smart, but seem to know not to break in the middle of a visual letter.)
For \textbf and \emph to work, your font needs to have bold and italic variants, and XeTeX (fontspec) needs to be able to find them.
The example output above with Noto Sans Kannada was still not perfect (as it doesn't have italics, plus I don't understand why the line lengths are different), so I tried switching to a different font, Kedage. Unfortunately this font seems to have an "empty" glyph for the hyphen character, so (short of editing the font to fix its hyphen), this is a hack, using a different character instead:
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\kannadafont[HyphenChar={+}]{Kedage}
\usepackage{polyglossia}
\setmainlanguage{kannada}
\setotherlanguages{english}
\begin{document}
\textenglish{namUmxru maYsUru.}
ನಮ್ಮೂರು ಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರುನಮ್ಮೂರಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರುನಮ್ಮೂರುಮೈಸೂರು
\textbf{ನಮ್ಮೂರು ಮೈಸೂರು.}
\emph{ನಮ್ಮೂರು ಮೈಸೂರು.}
\end{document}
which produces:

which may be preferable.